philiprehberger-task_queue 0.2.3 → 0.2.4

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: '088f95205b874279733ad703f517d81cb5f7694e7fc9ed2248c481869384e423'
4
- data.tar.gz: 9d3940ad0849cd7ecbeaa7f5cb7afa3c1a19e49d95ce3ca7cd4ce2b23afd4679
3
+ metadata.gz: e719bd335ea0127aef1dcec2e32e1231252d3ec26fd40c926ba55f9a49057c0e
4
+ data.tar.gz: c2bceca823d13e868783779144b9c196b51501c8f28e89ed3a48b72b724c2486
5
5
  SHA512:
6
- metadata.gz: d8043a08aebd40789f3da64d6d88aa65342dee25cbc70aa4cadaae94400a60ba23158fcab58eb822916d04af4ce596645f6b018b57df16b77fef57a7be8b5da7
7
- data.tar.gz: f4b653d153a61fb6f8126969aa0763e8f0d22c4694dffcb352d82120b53e81a85de924b7ee1b0fc6a1983a7cf60ad0b4035a83513c5344f561dd51b6847ddd65
6
+ metadata.gz: 9f2d3ca69148a5a675164a32da19e985ed4399c7cfe1cb5b737fa4ffdaec5233d60af2bd74f15512348fc851935da104bcca8cf204c4febc37bf4b334e401d4c
7
+ data.tar.gz: 396b5119c14d6d096fc60e6437c0b663f5d237a00dad226ca92266cd2de51e801c50298520dac923b58b420016ca8a69fb62bb67b852a2c711261844c61f4980
data/CHANGELOG.md CHANGED
@@ -1,27 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ All notable changes to this gem will be documented in this file.
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [0.2.4] - 2026-03-20
8
+
9
+ ### Fixed
10
+ - Fix README description trailing period
11
+ - Fix CHANGELOG header wording
12
+
3
13
  ## [0.2.3] - 2026-03-20
4
14
 
5
15
  ### Changed
6
16
  - Expand README with detailed API documentation and usage examples
7
17
 
8
- ## 0.2.2
18
+ ## [0.2.2] - 2026-03-18
9
19
 
20
+ ### Fixed
10
21
  - Fix RuboCop Style/StringLiterals violations in gemspec
11
22
 
12
- ## 0.2.1
23
+ ## [0.2.1] - 2026-03-16
13
24
 
25
+ ### Added
14
26
  - Add License badge to README
15
27
  - Add bug_tracker_uri to gemspec
16
28
  - Add Development section to README
17
29
  - Add Requirements section to README
18
30
 
19
- All notable changes to this project will be documented in this file.
20
-
21
31
  ## [0.2.0] - 2026-03-12
22
32
 
23
33
  ### Added
24
-
25
34
  - `on_error` callback for handling task failures
26
35
  - `stats` method returning completed, failed, and pending task counts
27
36
  - `drain(timeout:)` method to wait for task completion without shutting down
@@ -29,7 +38,6 @@ All notable changes to this project will be documented in this file.
29
38
  ## [0.1.0] - 2026-03-10
30
39
 
31
40
  ### Added
32
-
33
41
  - Initial release
34
42
  - In-process async job queue with configurable concurrency
35
43
  - Thread-safe task enqueuing with `push` / `<<`
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # philiprehberger-task_queue
2
2
 
3
+ [![Tests](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
3
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-task_queue.svg)](https://rubygems.org/gems/philiprehberger-task_queue)
4
- [![CI](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-task-queue)](LICENSE)
6
6
 
7
- In-process async job queue with concurrency control for Ruby.
7
+ In-process async job queue with concurrency control for Ruby
8
8
 
9
9
  ## Requirements
10
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskQueue
5
- VERSION = "0.2.3"
5
+ VERSION = "0.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-task_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-20 00:00:00.000000000 Z
11
+ date: 2026-03-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A lightweight, zero-dependency, thread-safe in-process async job queue
14
14
  with configurable concurrency for Ruby applications.