Skip to content

Commit

Permalink
Merge pull request #273 from splaplapla/bump
Browse files Browse the repository at this point in the history
0.3.10
  • Loading branch information
jiikko authored Nov 30, 2023
2 parents 53de867 + b6d9ce1 commit f8b10e3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [0.3.10] 2023-11-30
* マクロを実行するとメモリ使用率が増え続ける不具合を修正しました

## [0.3.9] 2023-07-15
* Lボタンを押すだけで簡単スニーキング(スプラ3)ができるようになりました
* 例: `left_analog_stick_cap cap: 1100, if_pressed: [:l], combined_press_is_pressed: [:zl], force_neutral: [:l]`
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
procon_bypass_man (0.3.9)
procon_bypass_man (0.3.10)
action_cable_client
blue_green_process (= 0.1.4.2)
pbmenv (>= 0.1.11)
Expand Down Expand Up @@ -56,7 +56,7 @@ GEM
parallel (1.21.0)
parser (3.0.3.2)
ast (~> 2.4.1)
pbmenv (0.1.12)
pbmenv (0.1.13)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
Expand Down Expand Up @@ -147,7 +147,7 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.1.0)
webrick (1.7.0)
websocket (1.2.9)
websocket (1.2.10)
websocket-eventmachine-base (1.2.0)
eventmachine (~> 1.0)
websocket (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ sudo kill -USR2 `cat ./pbm_pid`
* `message = ProconBypassMan::BootMessage.new; ProconBypassMan::ReportBootJob.perform(body: message.to_hash)`
### リリース手順
* project_template/web.rb, project_template/app.rb, lib/procon_bypass_man/version.rb のバージョンをあげる
* project_template/app.rb.erb, lib/procon_bypass_man/version.rb のバージョンをあげる
* CHANGELOG.md に日付を書く
* be rake release
* githubのreleaseを作成する
Expand Down
2 changes: 1 addition & 1 deletion lib/procon_bypass_man/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ProconBypassMan
VERSION = "0.3.9"
VERSION = "0.3.10"
end
2 changes: 1 addition & 1 deletion project_template/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
gemfile do
source 'https://rubygems.org'
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem 'procon_bypass_man', '0.3.9'
gem 'procon_bypass_man', '0.3.10'
# uncomment if you want to use master branch
# gem 'procon_bypass_man', github: 'splaplapla/procon_bypass_man', branch: 'master'
# uncomment if you want to use serial communication feature
Expand Down
2 changes: 1 addition & 1 deletion project_template/app.rb.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ begin
gemfile do
source 'https://rubygems.org'
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem 'procon_bypass_man', '0.3.9'
gem 'procon_bypass_man', '0.3.10'
# uncomment if you want to use master branch
# gem 'procon_bypass_man', github: 'splaplapla/procon_bypass_man', branch: 'master'
# uncomment if you want to use serial communication feature
Expand Down

0 comments on commit f8b10e3

Please sign in to comment.