Skip to content

Commit 14a662b

Browse files
committed
Bump minor version.
1 parent 0345ded commit 14a662b

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

lib/io/event/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
class IO
88
# @namespace
99
module Event
10-
VERSION = "1.10.2"
10+
VERSION = "1.11.0"
1111
end
1212
end

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Please see the [project documentation](https://socketry.github.io/io-event/) for
1818

1919
Please see the [project releases](https://socketry.github.io/io-event/releases/index) for all releases.
2020

21+
### v1.11.0
22+
23+
- [Introduce `IO::Event::WorkerPool` for off-loading blocking operations.](https://socketry.github.io/io-event/releases/index#introduce-io::event::workerpool-for-off-loading-blocking-operations.)
24+
2125
### v1.10.2
2226

2327
- Improved consistency of handling closed IO when invoking `#select`.

releases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Releases
22

3-
## Unreleased
3+
## v1.11.0
44

55
### Introduce `IO::Event::WorkerPool` for off-loading blocking operations.
66

77
The {ruby IO::Event::WorkerPool} provides a mechanism for executing blocking operations on separate OS threads while properly integrating with Ruby's fiber scheduler and GVL (Global VM Lock) management. This enables true parallelism for CPU-intensive or blocking operations that would otherwise block the event loop.
88

9-
```ruby
9+
``` ruby
1010
# Fiber scheduler integration via blocking_operation_wait hook
1111
class MyScheduler
1212
def initialize

0 commit comments

Comments
 (0)