Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.3.11 #279

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
PATH
remote: .
specs:
procon_bypass_man (0.3.10)
procon_bypass_man (0.3.11)
action_cable_client
blue_green_process (= 0.1.4.2)
pbmenv (>= 0.1.11)
set (= 1.0.3)
sorted_set

GEM
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.10"
VERSION = "0.3.11"
end
4 changes: 4 additions & 0 deletions procon_bypass_man.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Gem::Specification.new do |spec|
spec.add_dependency "pbmenv", ">= 0.1.11" # enable_pbm_cloud連携機能でPbmenv.install, .cleanを使っている.
spec.add_dependency "sorted_set"

# NOTE: https://github.com/splaplapla/procon_bypass_man/issues/275
# NOTE: set(1.0.4) は ruby 2.7.0以上を要求してしまう、2.5をサポートしているつもりなので1.0.3に固定しておく.
spec.add_dependency "set", "1.0.3"

# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html
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.10'
gem 'procon_bypass_man', '0.3.11'
# 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.10'
gem 'procon_bypass_man', '0.3.11'
# 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
Loading