philiprehberger-queue_stack 0.1.2 → 0.1.3

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: 5541578c54c7f8b07f9a49590279a9e607da14885af4df22d6f55c7b796a334d
4
- data.tar.gz: 57db85c1ff10a977487a4e3f2372f4daa9212ca366fa882a680517f99579cb45
3
+ metadata.gz: f4ef4ed0b1e562639df4b29faf1cb19980ed9847082b5e364cfc6ead53a60ee0
4
+ data.tar.gz: e838cc0fb510b4a4357601ed0b10c59484156caff7c6b355fdecfb9436eb773d
5
5
  SHA512:
6
- metadata.gz: 5cdaa533958587512c822228bae4256ad0824d170a87c0e790fed74e156b85c8d9b5de72cf7dc1a791ea1ed6e598f469ab48396e7df6ffe02a1f97add12edb48
7
- data.tar.gz: a213ab39720e54b86661369b9041be11809b64e46d9840b034f657feb72ad298334a75f3c9e7932f6eb924443855c381da4f92cb0655637a82f9f139fdd98e89
6
+ metadata.gz: 5f2e8d31d858e39a6ec0a1ca916723546f8a9a7b37fba0530a0b7838d90dce0af3c287230f6efdcf04d013449417b12a434db802d292757f323281010b780fc6
7
+ data.tar.gz: 6fda21f8ae5e0aee952c2dfdeeb771465dac6813176b1722fda4172ae26a020f43d58ef748237df8d27e43f05e60b770ec2b96f0901c3ad1fba791a7d31b0385
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.3] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Standardize README code examples to use double-quote require statements
14
+
10
15
  ## [0.1.2] - 2026-03-24
11
16
 
12
17
  ### Fixed
data/README.md CHANGED
@@ -27,7 +27,7 @@ gem install philiprehberger-queue_stack
27
27
  ## Usage
28
28
 
29
29
  ```ruby
30
- require 'philiprehberger/queue_stack'
30
+ require "philiprehberger/queue_stack"
31
31
 
32
32
  q = Philiprehberger::QueueStack::Queue.new(capacity: 100)
33
33
  q.enqueue('task')
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module QueueStack
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-queue_stack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
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-24 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Thread-safe queue and stack data structures with configurable capacity
14
14
  limits, blocking enqueue/dequeue with timeouts, and peek operations. Uses Mutex