Skip to content

Commit

Permalink
Bump version 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pitr-ch committed Jan 20, 2021
1 parent a5076bf commit eb400d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Current

## Release v1.1.8 (20 January 2021)

* (#885) Fix race condition in TVar for stale reads
* (#884) RubyThreadLocalVar: Do not iterate over hash which might conflict with new pair addition

## Release v1.1.7 (6 August 2020)

concurrent-ruby:
Expand Down
8 changes: 5 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ namespace :repackage do
Rake::Task['lib/concurrent-ruby/concurrent/concurrent_ruby.jar'].invoke

# build all gem files
RakeCompilerDock.sh 'bundle install --local && bundle exec rake cross native package --trace'
%w[x86-mingw32 x64-mingw32].each do |plat|
RakeCompilerDock.sh "bundle install --local && bundle exec rake native:#{plat} gem --trace", platform: plat
end
end
end
end
Expand Down Expand Up @@ -302,7 +304,7 @@ namespace :release do
end

desc '** tag HEAD with current version and push to github'
task :tag do
task :tag => :ask do
Dir.chdir(__dir__) do
sh "git tag v#{Concurrent::VERSION}"
sh "git push origin v#{Concurrent::VERSION}"
Expand All @@ -312,7 +314,7 @@ namespace :release do
end

desc '** push all *.gem files to rubygems'
task :rubygems do
task :rubygems => :ask do
Dir.chdir(__dir__) do
sh "gem push pkg/concurrent-ruby-#{Concurrent::VERSION}.gem"
sh "gem push pkg/concurrent-ruby-edge-#{Concurrent::EDGE_VERSION}.gem" if publish_edge
Expand Down
2 changes: 1 addition & 1 deletion lib/concurrent-ruby/concurrent/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Concurrent
VERSION = '1.1.7'
VERSION = '1.1.8'
end

0 comments on commit eb400d3

Please sign in to comment.