philiprehberger-ring_buffer 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: a6413e1bfb64c5fd698a9c2c8d701ea3a58a348202ea7856a69c34455acea33f
4
- data.tar.gz: efd3c991398090ed89239787d379f47dbb614a07816a5f39b41f7ba6d5518210
3
+ metadata.gz: 88615ccc35562798a43025c6a997082a44943040580041b7ede5293e510b2aec
4
+ data.tar.gz: 180b13a68fa18f3e84d628a1fe8f2b3af8bc41b787e859ccaca204e01051b57a
5
5
  SHA512:
6
- metadata.gz: 6e5d99cb0de4f389949748763b9d3c7169362182ec5533597d6724c553df7e5f7489126a6d3fd9fd3ba342b5a5b1b895097de5a1245bc840a8664b7c9fdabc34
7
- data.tar.gz: 98a73f4b242f5e42adf2a532e39e2318c7591ba292f5d89aa7d4085a3b2e3da214181b67fe51e6f7ea7de1dae593cf2b282fb694f2dcbc246b4280d9756ef765
6
+ metadata.gz: e5ba3deaabafcb5c35fa8553b8e3a0f95c0f0d347dd9e082339591aa46da0da3902a646e1005ee946ab5da608059955168289f27d09952448062e2969b027b28
7
+ data.tar.gz: e23d4912c16d2146e2faca806a7757c5fe502f54347e08549a5918b3a8a9a3e2afa776b19c403c4083be5474bdb4966843d0b384d4ee6d58d9727d32d7177b1a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ 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.4] - 2026-03-26
11
+
12
+ ### Changed
13
+
14
+ - Add Sponsor badge and fix License link format in README
15
+
10
16
  ## [0.1.3] - 2026-03-24
11
17
 
12
18
  ### Fixed
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![Tests](https://github.com/philiprehberger/rb-ring-buffer/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-ring-buffer/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-ring_buffer.svg)](https://rubygems.org/gems/philiprehberger-ring_buffer)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-ring-buffer)](LICENSE)
6
+ [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](https://github.com/sponsors/philiprehberger)
6
7
 
7
8
  Fixed-size circular buffer with overflow, statistics, and enumeration
8
9
 
@@ -93,4 +94,4 @@ bundle exec rubocop
93
94
 
94
95
  ## License
95
96
 
96
- MIT
97
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  class RingBuffer
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-ring_buffer
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
  - Philip Rehberger
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-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Fixed-capacity ring buffer that overwrites oldest entries on overflow,
14
14
  with built-in statistics (average, sum, min, max), last-n retrieval, and Enumerable