File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
lib/concurrent-ruby/concurrent Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11## Current
22
3+ ## Release v1.1.8 (20 January 2021)
4+
5+ * (#885 ) Fix race condition in TVar for stale reads
6+ * (#884 ) RubyThreadLocalVar: Do not iterate over hash which might conflict with new pair addition
7+
38## Release v1.1.7 (6 August 2020)
49
510concurrent-ruby:
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ namespace :repackage do
4949 Rake ::Task [ 'lib/concurrent-ruby/concurrent/concurrent_ruby.jar' ] . invoke
5050
5151 # build all gem files
52- RakeCompilerDock . sh 'bundle install --local && bundle exec rake cross native package --trace'
52+ %w[ x86-mingw32 x64-mingw32 ] . each do |plat |
53+ RakeCompilerDock . sh "bundle install --local && bundle exec rake native:#{ plat } gem --trace" , platform : plat
54+ end
5355 end
5456 end
5557end
@@ -302,7 +304,7 @@ namespace :release do
302304 end
303305
304306 desc '** tag HEAD with current version and push to github'
305- task :tag do
307+ task :tag => :ask do
306308 Dir . chdir ( __dir__ ) do
307309 sh "git tag v#{ Concurrent ::VERSION } "
308310 sh "git push origin v#{ Concurrent ::VERSION } "
@@ -312,7 +314,7 @@ namespace :release do
312314 end
313315
314316 desc '** push all *.gem files to rubygems'
315- task :rubygems do
317+ task :rubygems => :ask do
316318 Dir . chdir ( __dir__ ) do
317319 sh "gem push pkg/concurrent-ruby-#{ Concurrent ::VERSION } .gem"
318320 sh "gem push pkg/concurrent-ruby-edge-#{ Concurrent ::EDGE_VERSION } .gem" if publish_edge
Original file line number Diff line number Diff line change 11module Concurrent
2- VERSION = '1.1.7 '
2+ VERSION = '1.1.8 '
33end
You can’t perform that action at this time.
0 commit comments