philiprehberger-cache_kit 0.3.1 → 0.3.2

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: 8b515b534e67af3974fd473015800fb3ca7ba58ed55d77039d26a8a20b43e1c7
4
- data.tar.gz: c01e6bdee343e524f3abdc75585286a0bc75cc99c2f7fbfb61206e65ed5fb69c
3
+ metadata.gz: ce26e89d2d983dffc727ddceeef5c5fa4a16106e315e4aba311c60285bba8e98
4
+ data.tar.gz: 9ea6436a2721e39d386f21894cdc115766b06cc5521ae58cf9baf91738b04dae
5
5
  SHA512:
6
- metadata.gz: 369ba8aa6cc57b595cec309c0a01bba8d95b1c88c6311d38951f225a96cc37c9925297573499ac54d6a05029e731afe17b3d393cff568a9a472497cd45045da3
7
- data.tar.gz: 545cb36af1792619ce4cc440de72a5f1bd7814d39c5db0de751f33d2b99fe5296708d4cc8de87ef8be1cb7d2a4cfb56b88ccce845b9c09f84475e76b50a42c8b
6
+ metadata.gz: 8012e657686d668db88ee67b713ff4b437b669011820b92be2c3eea0a40ce636a76ac2594d83c457d9107eeacdbc7691ef519b1e112289e740855e256f4589d2
7
+ data.tar.gz: 1a665ad412b698854c016f9a967e7fcad7e2f5d5a2f654bca6b92a6e975dfd35dfb27afd07f1022ad86d1a518942b290f02f3c9faa20ca40e2dfc7ca12548dbe
data/CHANGELOG.md CHANGED
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
- n## [0.3.1] - 2026-03-22
9
+
10
+ ## [0.3.2] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Remove inline comments from Development section to match template
14
+
15
+ ## [0.3.1] - 2026-03-22
10
16
 
11
17
  ### Changed
12
18
  - Update rubocop configuration for Windows compatibility
data/README.md CHANGED
@@ -193,8 +193,8 @@ new_cache.restore(Marshal.load(File.read("cache.bin")))
193
193
 
194
194
  ```bash
195
195
  bundle install
196
- bundle exec rspec # Run tests
197
- bundle exec rubocop # Check code style
196
+ bundle exec rspec
197
+ bundle exec rubocop
198
198
  ```
199
199
 
200
200
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module CacheKit
5
- VERSION = "0.3.1"
5
+ VERSION = "0.3.2"
6
6
  end
7
7
  end
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.1
4
+ version: 0.3.2
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-22 00:00:00.000000000 Z
11
+ date: 2026-03-25 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.