concurrent-ruby-ext 1.1.8-x64-mingw32 → 1.1.9-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9387a88bfcce61d2223cd671e78a61ba829da25781c5dcaf2b92937e7eb44814
4
- data.tar.gz: 2483c5e7c6b0739f8bc03eefe0a30732ac03c23f6a85ed47d3b974be8b527d0b
3
+ metadata.gz: b2b6bae57a277838a5e78d8f61e9906112364c786f308b37226fee30ddd419ab
4
+ data.tar.gz: 764bcb106702406e38c7883618eeeb75ec68f65a4cc693455963d0ba6f0fc256
5
5
  SHA512:
6
- metadata.gz: e0c4c5e0f121ce9a2417da0804dd4a61a0ce3b9cde4a28b208a1ab4901d333c64e2a5e751c6904ab2f0baf86b29e915a45426d01cb5988996001af5fa2466a45
7
- data.tar.gz: afc8f7fee47ba3b3b7fea498d4a849c2e81542a865fd7a3b7f330f8fb28e27cf8d39a488aa5a55ab6c339b43f6ab857a2164f08c58f80f1df6a18909daa5136c
6
+ metadata.gz: 1aa0a31d90de2cebd13be0b7ca4cb1a91808c5c7ace138abff4b8fcbfe0b68f4dbb22131961ff8246958af45858b23a19a958a7a871b60e04779b75b762bd9a4
7
+ data.tar.gz: e39d359b044a87d706ee2f333d6c34084172d2b46483394540521c2fadcaad348f4f275d5f9abbc78f514dfe71bbf21802bd3ed1097ac0599669f37e22d34289
data/CHANGELOG.md CHANGED
@@ -1,7 +1,19 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.1.9 (5 Jun 2021)
4
+
5
+ concurrent-ruby:
6
+
7
+ * (#866) Child promise state not set to :pending immediately after #execute when parent has completed
8
+ * (#905, #872) Fix RubyNonConcurrentPriorityQueue#delete method
9
+ * (2df0337d) Make sure locks are not shared on shared when objects are dup/cloned
10
+ * (#900, #906, #796, #847, #911) Fix Concurrent::Set tread-safety issues on CRuby
11
+ * (#907) Add new ConcurrentMap backend for TruffleRuby
12
+
3
13
  ## Release v1.1.8 (20 January 2021)
4
14
 
15
+ concurrent-ruby:
16
+
5
17
  * (#885) Fix race condition in TVar for stale reads
6
18
  * (#884) RubyThreadLocalVar: Do not iterate over hash which might conflict with new pair addition
7
19
 
data/README.md CHANGED
@@ -353,19 +353,43 @@ and load the appropriate C extensions.
353
353
  No gems should depend on `concurrent-ruby-ext`. Doing so will force C extensions on your users. The
354
354
  best practice is to depend on `concurrent-ruby` and let users to decide if they want C extensions.
355
355
 
356
+ ## Building the gem
357
+
358
+ ### Requirements
359
+
360
+ * Recent CRuby
361
+ * JRuby, `rbenv install jruby-9.2.17.0`
362
+ * Set env variable `CONCURRENT_JRUBY_HOME` to point to it, e.g. `/usr/local/opt/rbenv/versions/jruby-9.2.17.0`
363
+ * Install Docker, required for Windows builds
364
+
365
+ ### Publishing the Gem
366
+
367
+ * Update`version.rb`
368
+ * Update the CHANGELOG
369
+ * Update the Yard documentation
370
+ - Add the new version to `docs-source/signpost.md`. Needs to be done only if there are visible changes in the
371
+ documentation.
372
+ - Run `bundle exec rake yard` to update the master documentation and signpost.
373
+ - Run `bundle exec rake yard:<new-version>` to add or update the documentation of the new version.
374
+ * Commit (and push) the changes.
375
+ * Use `be rake release` to release the gem. It consists
376
+ of `['release:checks', 'release:build', 'release:test', 'release:publish']` steps. It will ask at the end before
377
+ publishing anything. Steps can also be executed individually.
378
+
356
379
  ## Maintainers
357
380
 
358
- * [Petr Chalupa](https://github.com/pitr-ch) (lead maintainer, point-of-contact)
359
- * [Jerry D'Antonio](https://github.com/jdantonio) (creator)
360
- * [Chris Seaton](https://github.com/chrisseaton)
381
+ * [Petr Chalupa](https://github.com/pitr-ch) Lead maintainer, point-of-contact.
382
+ * [Chris Seaton](https://github.com/chrisseaton)
383
+ If Petr is not available Chris can help or poke Petr to pay attention where it is needed.
361
384
 
362
385
  ### Special Thanks to
363
386
 
387
+ * [Jerry D'Antonio](https://github.com/jdantonio) for creating the gem
364
388
  * [Brian Durand](https://github.com/bdurand) for the `ref` gem
365
389
  * [Charles Oliver Nutter](https://github.com/headius) for the `atomic` and `thread_safe` gems
366
390
  * [thedarkone](https://github.com/thedarkone) for the `thread_safe` gem
367
391
 
368
- and to the past maintainers
392
+ to the past maintainers
369
393
 
370
394
  * [Michele Della Torre](https://github.com/mighe)
371
395
  * [Paweł Obrok](https://github.com/obrok)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8
4
+ version: 1.1.9
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Jerry D'Antonio
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-01-20 00:00:00.000000000 Z
12
+ date: 2021-06-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.1.8
20
+ version: 1.1.9
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 1.1.8
27
+ version: 1.1.9
28
28
  description: |2
29
29
  C extensions to optimize the concurrent-ruby gem when running under MRI.
30
30
  Please see http://concurrent-ruby.com for more information.