philiprehberger-priority_queue 0.1.8 → 0.1.10

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: a631e281cd30a3bd485b87972243ee8f53420dd1fb86e16a2cf8b5d32493dbb5
4
- data.tar.gz: 91ae0621673e00deef9dc027e2645468d0070d1d8bb38d453197a7c3326790e8
3
+ metadata.gz: e95bdf19e31db232c54ac6ee645aa4a9023fc87140d2be6310c8469e4a5440d2
4
+ data.tar.gz: 944088fb4246573e985496a73fa8ca50a369da021274c050b8db926e3a6f7b4c
5
5
  SHA512:
6
- metadata.gz: 32f67845be0fa02863266bf26fde40d6a425cff68e8b7b0271a69c21ad05842c68e6db0a587ed0ef7a65455070021d7308459bac122a6870159910129ca97c76
7
- data.tar.gz: da04d30b1cdc936aa4b1a6f15c99feb1110b5dae3a456d8d9fa30ae8fa41a4d0a93bdd420ea83fdf03572bb1004c1483dcc54a5928c5cc611ff998aeec76feb7
6
+ metadata.gz: 5c21fb11db45c81cc229b54ac6a8589000543141859a47abe483be620825e7662ce5b89228b278927e5665e842443300421641a9e494d372d3921f43bbcaad5a
7
+ data.tar.gz: 7efaf2fe7884442250b83e94e4c9e472f82b50e0ce7ee7ae8cc0f2390674cdd7827176de9c77baefd7df1a81b02ffca32260429545dbda04e9ea0566e0602db1
data/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.10] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.1.9] - 2026-03-26
16
+
17
+ ### Changed
18
+ - Add Sponsor badge to README
19
+ - Fix License section format
20
+
21
+
10
22
  ## [0.1.8] - 2026-03-24
11
23
 
12
24
  ### Changed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-priority-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-priority-queue/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-priority_queue.svg)](https://rubygems.org/gems/philiprehberger-priority_queue)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-priority-queue)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-priority-queue)](https://github.com/philiprehberger/rb-priority-queue/commits/main)
6
6
 
7
7
  Binary heap priority queue with min/max modes, custom comparators, and priority updates
8
8
 
@@ -130,6 +130,24 @@ bundle exec rspec
130
130
  bundle exec rubocop
131
131
  ```
132
132
 
133
+ ## Support
134
+
135
+ If you find this project useful:
136
+
137
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-priority-queue)
138
+
139
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-priority-queue/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
140
+
141
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-priority-queue/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
142
+
143
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
144
+
145
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
146
+
147
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
148
+
149
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
150
+
133
151
  ## License
134
152
 
135
- MIT
153
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PriorityQueue
5
- VERSION = '0.1.8'
5
+ VERSION = '0.1.10'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-priority_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - philiprehberger
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: A binary heap-based priority queue supporting min-heap, max-heap, and
14
14
  custom comparator modes. Features O(log n) push/pop, priority changes, merge operations,