concurrent-ruby-ext 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d95f8ef0cdfcf177cdc015be3b56460902f8af55464c88d0e39355eb5e2db56
|
4
|
+
data.tar.gz: 8a1898b667b8e80f6c98d6fbd17a7a7b4cd36f1ecc03ae78f413605820b08ea2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd24e3dbef19942aee7547e9b92c7c4444fa49b1c70cb53d54bb50a5df07cead035137738bc5d88d61875f9794a4d4e2b218fc358a4def602500d791139def6f
|
7
|
+
data.tar.gz: 6a6b18359b8025c8fa8ca0feb7e70f04a30a1672b6f9c840b564d1723e286f6f1e7e4329c98ae5eebdffb47db9c974db775895f50e6470603777aa114e24fc6f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## Current
|
2
2
|
|
3
|
+
## Release v1.2.2 (24 Feb 2023)
|
4
|
+
|
5
|
+
* (#993) Fix arguments passed to `Concurrent::Map`'s `default_proc`.
|
6
|
+
|
7
|
+
## Release v1.2.1 (24 Feb 2023)
|
8
|
+
|
3
9
|
* (#990) Add missing `require 'fiber'` for `FiberLocalVar`.
|
4
10
|
* (#989) Optimize `Concurrent::Map#[]` on CRuby by letting the backing Hash handle the `default_proc`.
|
5
11
|
|
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.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.2.
|
20
|
+
version: 1.2.2
|
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.2.
|
27
|
+
version: 1.2.2
|
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.
|