concurrent-ruby-ext 1.3.3 → 1.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -2
  3. data/README.md +1 -1
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b33ae365fa8fbba5bedd3ef460d52a16156912bc17696f4e801be7b6d2e7c2f4
4
- data.tar.gz: 47fcd1de9fb220ce1e061627e455f30da5683ffb39b61b070867f0226762d227
3
+ metadata.gz: 96bbc12850067971d8699f3aff12e2fee3a4fa54d7417314d67d74bd8305fe03
4
+ data.tar.gz: a9877bcd468f3ad14e5d65b7b1a6aa9220b7ecbb1dddfe10b201c2534f39c1f1
5
5
  SHA512:
6
- metadata.gz: 86a26696c6047a78e33a44b9cadb6cce684251484533faf039f2f04a99b0dd8f15030d98df213fe067d9d07055d0fa2829b4f2628578a26187ee80173a0c58c3
7
- data.tar.gz: 7bb67090adce2f8b45ee6652d51917a4086fbd5beee71f33ff64b14715969be740d5abf9a13dd109221f49eef30028e1a6e2af8252f8eb2f5df94468d80bfa7c
6
+ metadata.gz: 8952be329416bf6df8fddc4a3f9a6302343a1bbebf9e5e01cb20fcf18faef90675a38182c49d55916f1774eb549cba2b2754452f4c1abb8cffb1be9bf1975911
7
+ data.tar.gz: ae2ba5c5711a5f7da16ccb20da475970797f90e77a5f36c734ef8fcfaf875291854368a7ff92d574831c5eb1d34e598c882affd1f01d9a90cb9ba89173f8f9a9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  ## Current
2
2
 
3
+ ## Release v1.3.5, edge v0.7.2 (15 January 2025)
4
+
5
+ concurrent-ruby:
6
+
7
+ * (#1062) Remove dependency on logger.
8
+
9
+ concurrent-ruby-edge:
10
+
11
+ * (#1062) Remove dependency on logger.
12
+
13
+ ## Release v1.3.4 (10 August 2024)
14
+
15
+ * (#1060) Fix bug with return value of `Concurrent.available_processor_count` when `cpu.cfs_quota_us` is -1.
16
+ * (#1058) Add `Concurrent.cpu_shares` that is cgroups aware.
17
+
3
18
  ## Release v1.3.3 (9 June 2024)
4
19
 
5
20
  * (#1053) Improve the speed of `Concurrent.physical_processor_count` on Windows.
@@ -291,7 +306,7 @@ concurrent-ruby-edge:
291
306
  * Simplification of `RubySingleThreadExecutor`
292
307
  * `Async` improvements
293
308
  - Each object uses its own `SingleThreadExecutor` instead of the global thread pool.
294
- - No longers supports executor injection
309
+ - No longer supports executor injection
295
310
  - Much better documentation
296
311
  * `Atom` updates
297
312
  - No longer `Dereferenceable`
@@ -466,7 +481,7 @@ Please see the [roadmap](https://github.com/ruby-concurrency/concurrent-ruby/iss
466
481
  * Fixed bug with return value of `Concurrent::Actor::Utils::Pool#ask`
467
482
  * Fixed timing bug in `TimerTask`
468
483
  * Fixed bug when creating a `JavaThreadPoolExecutor` with minimum pool size of zero
469
- * Removed confusing warning when not using native extenstions
484
+ * Removed confusing warning when not using native extensions
470
485
  * Improved documentation
471
486
 
472
487
  ## Release v0.7.0 (13 August 2014)
data/README.md CHANGED
@@ -284,7 +284,7 @@ To use the tools in the Edge gem it must be required separately:
284
284
  require 'concurrent-edge'
285
285
  ```
286
286
 
287
- If the library does not behave as expected, `Concurrent.use_stdlib_logger(Logger::DEBUG)` could
287
+ If the library does not behave as expected, `Concurrent.use_simple_logger(:DEBUG)` could
288
288
  help to reveal the problem.
289
289
 
290
290
  ## Installation
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.3.3
4
+ version: 1.3.5
5
5
  platform: ruby
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: 2024-06-09 00:00:00.000000000 Z
12
+ date: 2025-01-15 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.3.3
20
+ version: 1.3.5
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.3.3
27
+ version: 1.3.5
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.