From bda72aeffc1a7663d33014aa887dd3908caa92dd Mon Sep 17 00:00:00 2001 From: Kevin Menard Date: Tue, 28 May 2024 16:07:40 -0400 Subject: [PATCH] Prepare the 1.3.0 release. --- CHANGELOG.md | 5 +++++ docs-source/signpost.md | 2 +- lib/concurrent-ruby/concurrent/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9426af24..89cb50dd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Current +## Release v1.3.0 (28 May 2024) + +* (#1042) Align Java Executor Service behavior for `shuttingdown?`, `shutdown?` +* (#1038) Add `Concurrent.usable_processor_count` that is cgroups aware. + ## Release v1.2.3 (16 Jan 2024) * See [the GitHub release](https://github.com/ruby-concurrency/concurrent-ruby/releases/tag/v1.2.3) for details. diff --git a/docs-source/signpost.md b/docs-source/signpost.md index 4bf140769..06c96783a 100644 --- a/docs-source/signpost.md +++ b/docs-source/signpost.md @@ -3,7 +3,7 @@ Pick a `concurrent-ruby` version: * [master](./master/index.html) -* [1.2.3 with edge 0.7.0](./1.2.3/index.html) +* [1.3.0 with edge 0.7.0](./1.2.3/index.html) * [1.1.10 with edge 0.6.0](./1.1.10/index.html) * [1.1.9 with edge 0.6.0](./1.1.9/index.html) * [1.1.8 with edge 0.6.0](./1.1.8/index.html) diff --git a/lib/concurrent-ruby/concurrent/version.rb b/lib/concurrent-ruby/concurrent/version.rb index 9a1c29223..647e7add5 100644 --- a/lib/concurrent-ruby/concurrent/version.rb +++ b/lib/concurrent-ruby/concurrent/version.rb @@ -1,3 +1,3 @@ module Concurrent - VERSION = '1.2.3' + VERSION = '1.3.0' end