philiprehberger-priority_queue 0.1.1 → 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: effc38578d3d02aa350f639420123b99a26e99de790207eb8babb13668540f92
4
- data.tar.gz: a303a127bd33cae057fd6c20d5198e55d2dc104f5d22ae4c693ad3515b52b1b0
3
+ metadata.gz: db29a20f2b2c09b3390258813a05f582e11cd1385d8e16a3e1300f774af68b9d
4
+ data.tar.gz: 51c1541a16f68a054d6f860f6236e5be2cb8b44968d20571fe0da9977f3cbdcf
5
5
  SHA512:
6
- metadata.gz: 5d41bad688a95b632280e32d3352034ab2b14fb8ce8a75653a0632d0a0db090dd7b7afee08602bd0a12f9e24c7f6018e83c56a4eb6903453b66890b5b02ce3a2
7
- data.tar.gz: 2a1e8ea6ad147e6070a12d503d0543b95776a156152f50c67b2732ac0c63e1226c606eaa9f5abba785ae4c3eb15a94d9a79a89e1e00f6023e9aaaa9bce0d8407
6
+ metadata.gz: b4ca88547d28fac565db6c720d820bb4008e3e7735aa9f42e4d6292ac481c586338d38ef26d96c9d53f4666d90968167cb4b29055e97187d1cc0ae45b4689755
7
+ data.tar.gz: c88439fb9acdf4a907bd6307fbddf62821b8840fc869e40253f9778a48096b0b43a2038f1957375a3d9f7e9ad35b43b37b760b50c313f13ab12c7f07f7f766ea
data/CHANGELOG.md CHANGED
@@ -1,9 +1,23 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ All notable changes to this gem will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.3] - 2026-03-22
11
+
12
+ ### Added
13
+ - 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
14
+
15
+ ## [0.1.2] - 2026-03-22
16
+
17
+ ### Fixed
18
+
19
+ - Fix CHANGELOG header wording
20
+ - Add bug_tracker_uri to gemspec
7
21
 
8
22
  ## [0.1.0] - 2026-03-22
9
23
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # philiprehberger-priority_queue
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-priority_queue.svg)](https://badge.fury.io/rb/philiprehberger-priority_queue)
4
+ $badge_line
4
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)
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.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PriorityQueue
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-priority_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - philiprehberger
@@ -31,6 +31,7 @@ metadata:
31
31
  homepage_uri: https://github.com/philiprehberger/rb-priority-queue
32
32
  source_code_uri: https://github.com/philiprehberger/rb-priority-queue
33
33
  changelog_uri: https://github.com/philiprehberger/rb-priority-queue/blob/main/CHANGELOG.md
34
+ bug_tracker_uri: https://github.com/philiprehberger/rb-priority-queue/issues
34
35
  rubygems_mfa_required: 'true'
35
36
  post_install_message:
36
37
  rdoc_options: []