philiprehberger-priority_queue 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: db29a20f2b2c09b3390258813a05f582e11cd1385d8e16a3e1300f774af68b9d
4
- data.tar.gz: 51c1541a16f68a054d6f860f6236e5be2cb8b44968d20571fe0da9977f3cbdcf
3
+ metadata.gz: 5a54ca7fd26ab265c4c752eb0be728e2a494d08edf896ccf782a0c8a97981990
4
+ data.tar.gz: ac6060efb25b0bdd7e5d792f818f791012657d2df3d9adec03a647de9144640c
5
5
  SHA512:
6
- metadata.gz: b4ca88547d28fac565db6c720d820bb4008e3e7735aa9f42e4d6292ac481c586338d38ef26d96c9d53f4666d90968167cb4b29055e97187d1cc0ae45b4689755
7
- data.tar.gz: c88439fb9acdf4a907bd6307fbddf62821b8840fc869e40253f9778a48096b0b43a2038f1957375a3d9f7e9ad35b43b37b760b50c313f13ab12c7f07f7f766ea
6
+ metadata.gz: cbf27f268448d60ddbf0eea8fe1cdd382fc0f359552d80ca28e0fd107fb419a9121c3a2caedfeb91b1537800add286311cba34fedbb3a79dafd98a36713f11ba
7
+ data.tar.gz: 235d0f7b820482740244ec0c27d4a3efbb8d2116cdbf860884714506b2c1d9e09d53f6b4db12d030cd2d4790133d69a83166a81823eea4548b74063881df8784
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ 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)
9
13
 
10
14
  ## [0.1.3] - 2026-03-22
11
15
 
data/README.md CHANGED
@@ -1,8 +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
- $badge_line
5
- [![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)
6
6
 
7
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.
8
8
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PriorityQueue
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-priority_queue
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
  - 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,