philiprehberger-priority_queue 0.1.2 → 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: eba3fde4872b0af2a635359f611a5b62841c802805574cb78517ed8ade438cb7
4
- data.tar.gz: 8e12ac4b01666321aa55f37bbacc3aa1fef966d9ab8cd36919d8ef628ff5698d
3
+ metadata.gz: 5a54ca7fd26ab265c4c752eb0be728e2a494d08edf896ccf782a0c8a97981990
4
+ data.tar.gz: ac6060efb25b0bdd7e5d792f818f791012657d2df3d9adec03a647de9144640c
5
5
  SHA512:
6
- metadata.gz: 948aceb8e3b03157f8be36bcd5e6ba84473ff9586d86e41ce954c86adfdf14862d26a09d4967188f10b3a4e153520032b3daa655d705e58d766361b2ee41a820
7
- data.tar.gz: 0fa1efd0a80e269df77e5ec88de7c746c8fa2b9432c75b07f38bdb15b0bb4676ad9e3ada3cc84e2ce1042beb2338f580f4b29be5e5a0579883696063dfa57a44
6
+ metadata.gz: cbf27f268448d60ddbf0eea8fe1cdd382fc0f359552d80ca28e0fd107fb419a9121c3a2caedfeb91b1537800add286311cba34fedbb3a79dafd98a36713f11ba
7
+ data.tar.gz: 235d0f7b820482740244ec0c27d4a3efbb8d2116cdbf860884714506b2c1d9e09d53f6b4db12d030cd2d4790133d69a83166a81823eea4548b74063881df8784
data/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
+ n## [0.1.4] - 2026-03-22
10
+
11
+ ### Changed
12
+ - Fix README badges to match template (Tests, Gem Version, License)
13
+
14
+ ## [0.1.3] - 2026-03-22
15
+
16
+ ### Added
17
+ - Expanded test suite from 23 to 30+ examples covering large queues, change_priority edge cases, clear-and-re-add, to_a order, merge interleaving, negative/float priorities, and FIFO tie-breaking
9
18
 
10
19
  ## [0.1.2] - 2026-03-22
11
20
 
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # philiprehberger-priority_queue
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/philiprehberger-priority_queue.svg)](https://badge.fury.io/rb/philiprehberger-priority_queue)
4
- [![CI](https://github.com/philiprehberger/rb-priority-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-priority-queue/actions/workflows/ci.yml)
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
+ [![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
6
 
6
7
  Binary heap priority queue with min/max modes and custom comparators. Features O(log n) push/pop, priority updates, merge operations, and FIFO tie-breaking for equal priorities.
7
8
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PriorityQueue
5
- VERSION = '0.1.2'
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-priority_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
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-22 00:00:00.000000000 Z
11
+ date: 2026-03-23 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,