philiprehberger-priority_queue 0.1.4 → 0.1.5

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: 5a54ca7fd26ab265c4c752eb0be728e2a494d08edf896ccf782a0c8a97981990
4
- data.tar.gz: ac6060efb25b0bdd7e5d792f818f791012657d2df3d9adec03a647de9144640c
3
+ metadata.gz: 7f342e86d70008478c28ee2b630fbd5332375444b75e95cd4fdf50067f411be4
4
+ data.tar.gz: 8078c13c51a0a9d793bc5163c52ee7727251571767402a8bf059cc9bdeea29da
5
5
  SHA512:
6
- metadata.gz: cbf27f268448d60ddbf0eea8fe1cdd382fc0f359552d80ca28e0fd107fb419a9121c3a2caedfeb91b1537800add286311cba34fedbb3a79dafd98a36713f11ba
7
- data.tar.gz: 235d0f7b820482740244ec0c27d4a3efbb8d2116cdbf860884714506b2c1d9e09d53f6b4db12d030cd2d4790133d69a83166a81823eea4548b74063881df8784
6
+ metadata.gz: dcc26ff306632c787749bbee30127076cda0c3c915ea00c8f862ffd1cf3671332c5b8f1e6d25c415ccf78083d8c4b4983ada21d3a7c519a0dbaf358b7999030e
7
+ data.tar.gz: 6a96813563fd436773fee5ef8b2483cc926dd525e10958f07f055ddfc11342e08c1e171c736f3e6161abe69bef35f5fc7c048ef96a94ab2daf11622f80042a79
data/CHANGELOG.md CHANGED
@@ -6,7 +6,14 @@ 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
9
+
10
+ ## [0.1.5] - 2026-03-23
11
+
12
+ ### Fixed
13
+ - Standardize README to match template (installation order, code fences, license section, one-liner format)
14
+ - Update gemspec summary to match README description
15
+
16
+ ## [0.1.4] - 2026-03-22
10
17
 
11
18
  ### Changed
12
19
  - Fix README badges to match template (Tests, Gem Version, License)
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-priority_queue.svg)](https://rubygems.org/gems/philiprehberger-priority_queue)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-priority-queue)](LICENSE)
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
+ Binary heap priority queue with min/max modes, custom comparators, and priority updates
8
8
 
9
9
  ## Requirements
10
10
 
@@ -12,16 +12,18 @@ Binary heap priority queue with min/max modes and custom comparators. Features O
12
12
 
13
13
  ## Installation
14
14
 
15
- ```sh
16
- gem install philiprehberger-priority_queue
17
- ```
18
-
19
- Or add to your Gemfile:
15
+ Add to your Gemfile:
20
16
 
21
17
  ```ruby
22
18
  gem 'philiprehberger-priority_queue'
23
19
  ```
24
20
 
21
+ Or install directly:
22
+
23
+ ```bash
24
+ gem install philiprehberger-priority_queue
25
+ ```
26
+
25
27
  ## Usage
26
28
 
27
29
  ```ruby
@@ -114,7 +116,7 @@ Returns a new queue containing items from both queues. Does not modify the origi
114
116
 
115
117
  ## Development
116
118
 
117
- ```sh
119
+ ```bash
118
120
  bundle install
119
121
  bundle exec rspec
120
122
  bundle exec rubocop
@@ -122,4 +124,4 @@ bundle exec rubocop
122
124
 
123
125
  ## License
124
126
 
125
- MIT License. See [LICENSE](LICENSE) for details.
127
+ MIT
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module PriorityQueue
5
- VERSION = '0.1.4'
5
+ VERSION = '0.1.5'
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.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - philiprehberger
@@ -51,5 +51,6 @@ requirements: []
51
51
  rubygems_version: 3.5.22
52
52
  signing_key:
53
53
  specification_version: 4
54
- summary: Binary heap priority queue with min/max modes and custom comparators
54
+ summary: Binary heap priority queue with min/max modes, custom comparators, and priority
55
+ updates
55
56
  test_files: []