philiprehberger-queue_stack 0.1.3 → 0.1.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: f4ef4ed0b1e562639df4b29faf1cb19980ed9847082b5e364cfc6ead53a60ee0
4
- data.tar.gz: e838cc0fb510b4a4357601ed0b10c59484156caff7c6b355fdecfb9436eb773d
3
+ metadata.gz: ff50a60ddd8a9bd5d462120f2030251c948659105edfe76ee9a87646d16f3a7d
4
+ data.tar.gz: e34e36ff80548f16e92aa9fd2b604161f74140caff317efec05ae48648bf732e
5
5
  SHA512:
6
- metadata.gz: 5f2e8d31d858e39a6ec0a1ca916723546f8a9a7b37fba0530a0b7838d90dce0af3c287230f6efdcf04d013449417b12a434db802d292757f323281010b780fc6
7
- data.tar.gz: 6fda21f8ae5e0aee952c2dfdeeb771465dac6813176b1722fda4172ae26a020f43d58ef748237df8d27e43f05e60b770ec2b96f0901c3ad1fba791a7d31b0385
6
+ metadata.gz: bb6a2bade86267597f71fe64a549fd82b85f5376a3c4e57b4f2ecc96a5f944abc9f63112c0c50407c185ee41ffa8336a6f1328c866ee70ee21ebbd5eff0eac25
7
+ data.tar.gz: 0ba54d2272dee5f4fa95ce8e614ef4a7bde2f1db07c3887adf4caee7495395fb387ec76288cd0fc59ed87b7af1fa9d137e4ea866c777a06aa510b147255bdfc7
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.4] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
10
15
  ## [0.1.3] - 2026-03-24
11
16
 
12
17
  ### Fixed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-queue-stack/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-queue-stack/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-queue_stack.svg)](https://rubygems.org/gems/philiprehberger-queue_stack)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-queue-stack)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-queue-stack)](https://github.com/philiprehberger/rb-queue-stack/commits/main)
6
6
 
7
7
  Thread-safe Queue and Stack with capacity limits and blocking operations
8
8
 
@@ -112,6 +112,24 @@ bundle exec rspec
112
112
  bundle exec rubocop
113
113
  ```
114
114
 
115
+ ## Support
116
+
117
+ If you find this project useful:
118
+
119
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-queue-stack)
120
+
121
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-queue-stack/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
122
+
123
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-queue-stack/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
124
+
125
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
126
+
127
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
128
+
129
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
130
+
131
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
132
+
115
133
  ## License
116
134
 
117
- MIT
135
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module QueueStack
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.4'
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.3
4
+ version: 0.1.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-25 00:00:00.000000000 Z
11
+ date: 2026-03-31 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