philiprehberger-cache_kit 0.3.3 → 0.3.6

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: 9123dcb1783a336e43f0b3cf954cf4baea14c973c0b8efb97e338715c8e9a5c0
4
- data.tar.gz: 7a6169af28fd344f863bba016e4d39cb34efaaf6958bf7376d6abaf1cb96a002
3
+ metadata.gz: 399924703fbbe6a8d9931ec8884568c8cdad618edca20e610f55994d0a35868c
4
+ data.tar.gz: 99d3bb6a731d127bbc055adba8ec155f3257e28fcbfcd3d96b20208425bd4f65
5
5
  SHA512:
6
- metadata.gz: 382b691923988bef17a23c2863041f8675af28a3e90fc0132c9449fc390ba8be399f44d88588ddde9d773b0d4b5cd50ad35ade758ef58e5673f0f0634766b205
7
- data.tar.gz: 9247188e3b093eee9ce808d7f0bbd2ce8ced4a19f7daf63d8043db5b0f6ff9efcc96b02e8e057559ec06f5bf0ac1292f8b1e8acb4c00300de761347efa56c94c
6
+ metadata.gz: 5c5ab63a522156b6ced53634720a547698b5aba04968b42fa2fc4ebe437b4d99f081e58937d8c90027e5c9b6f5ac5db77b0ea60cddb79090031c1395aa11c2e7
7
+ data.tar.gz: 8c550d36d5cf8e52200708e93c85de778c8df36cb25f205a71baf2edf90ad59a68b29de20063692d92c0a58da4cb7dc2a75caca5abb4e4f6f5274e725a9e7967
data/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.6] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.3.5] - 2026-03-26
16
+
17
+ ### Changed
18
+
19
+ - Add Sponsor badge and fix License link format in README
20
+
21
+ ## [0.3.4] - 2026-03-24
22
+
23
+ ### Changed
24
+ - Expand test coverage to 65+ examples covering edge cases and error paths
25
+
10
26
  ## [0.3.3] - 2026-03-24
11
27
 
12
28
  ### Fixed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-cache-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-cache-kit/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-cache_kit.svg)](https://rubygems.org/gems/philiprehberger-cache_kit)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-cache-kit)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-cache-kit)](https://github.com/philiprehberger/rb-cache-kit/commits/main)
6
6
 
7
7
  In-memory LRU cache with TTL, tags, and thread safety
8
8
 
@@ -197,6 +197,24 @@ bundle exec rspec
197
197
  bundle exec rubocop
198
198
  ```
199
199
 
200
+ ## Support
201
+
202
+ If you find this project useful:
203
+
204
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-cache-kit)
205
+
206
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
207
+
208
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
209
+
210
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
211
+
212
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
213
+
214
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
215
+
216
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
217
+
200
218
  ## License
201
219
 
202
- MIT
220
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module CacheKit
5
- VERSION = "0.3.3"
5
+ VERSION = '0.3.6'
6
6
  end
7
7
  end
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "cache_kit/version"
4
- require_relative "cache_kit/entry"
5
- require_relative "cache_kit/callbacks"
6
- require_relative "cache_kit/tag_stats"
7
- require_relative "cache_kit/batch"
8
- require_relative "cache_kit/serializable"
9
- require_relative "cache_kit/eviction"
10
- require_relative "cache_kit/store"
3
+ require_relative 'cache_kit/version'
4
+ require_relative 'cache_kit/entry'
5
+ require_relative 'cache_kit/callbacks'
6
+ require_relative 'cache_kit/tag_stats'
7
+ require_relative 'cache_kit/batch'
8
+ require_relative 'cache_kit/serializable'
9
+ require_relative 'cache_kit/eviction'
10
+ require_relative 'cache_kit/store'
11
11
 
12
12
  module Philiprehberger
13
13
  module CacheKit
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-cache_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.6
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-31 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A lightweight, thread-safe in-memory LRU cache with TTL expiration and
14
14
  tag-based bulk invalidation for Ruby applications.