sin_lru_redux 2.5.1 → 2.5.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: ff8de8966a9a288fa43e66461aaf804e2e10f4dded516597c12e242c66cfe681
4
- data.tar.gz: f93a0589c337befa2de5134d38c60a2ae380c93eb7d20b25423dd68a845c21f0
3
+ metadata.gz: cf7571b2016719c1a7c64a739ecf886af45734c84ade0216148670379839c043
4
+ data.tar.gz: e31ef06f5733165370594ae6b870a5c532821678e1ca89d96ca6b7981d9248d3
5
5
  SHA512:
6
- metadata.gz: 69807c37d3b28a61077235ad2d49fc1f9afab0537a746bff25a0ec19979159e078f1496945b8a24dce934063bd985dbc8e93e45429620b912dde1c0434c65626
7
- data.tar.gz: 15f6aa14fd2b1929c3440c0978dd3bcf2cfbb4bf38b03f5d5f08cf0861018999a28998ae028939646f0787b96119ba2bfa4474c5202e4e8759378a545f8bd425
6
+ metadata.gz: c23b6af4cb525d28dfdecfa9d992f4c4ed3ee9e6f40bcc64c416a5b087f69fd09f388bdc19c12e39f1d4f80c33f0eda11c31d1b8349096741b6feb58a005640a
7
+ data.tar.gz: 85c3b9945a983f6fa3432b17f372d3fd0a24144492c9d676d4fff45760cb2f042f35d80a44461a9154f87dcee49db457a795b32b8d62da8f79eac9ed1ed2e68f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.5.2] - 2025-3-12
4
+
5
+ - Other: Update summary
6
+
3
7
  ## [2.5.1] - 2025-3-5
4
8
 
5
9
  - Other: Update summary
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![License](https://img.shields.io/github/license/cadenza-tech/sin_lru_redux?label=License&labelColor=343B42&color=blue)](https://github.com/cadenza-tech/sin_lru_redux/blob/main/LICENSE.txt) [![Tag](https://img.shields.io/github/tag/cadenza-tech/sin_lru_redux?label=Tag&logo=github&labelColor=343B42&color=2EBC4F)](https://github.com/cadenza-tech/sin_lru_redux/blob/main/CHANGELOG.md) [![Release](https://github.com/cadenza-tech/sin_lru_redux/actions/workflows/release.yml/badge.svg)](https://github.com/cadenza-tech/sin_lru_redux/actions?query=workflow%3Arelease) [![Test](https://github.com/cadenza-tech/sin_lru_redux/actions/workflows/test.yml/badge.svg)](https://github.com/cadenza-tech/sin_lru_redux/actions?query=workflow%3Atest) [![Lint](https://github.com/cadenza-tech/sin_lru_redux/actions/workflows/lint.yml/badge.svg)](https://github.com/cadenza-tech/sin_lru_redux/actions?query=workflow%3Alint)
4
4
 
5
- Efficient and thread-safe LRU cache.
5
+ Efficient and thread-safe LRU cache
6
6
 
7
7
  Forked from [LruRedux](https://github.com/SamSaffron/lru_redux).
8
8
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LruRedux
4
- VERSION = '2.5.1'
4
+ VERSION = '2.5.2'
5
5
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sin_lru_redux
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-05 00:00:00.000000000 Z
10
+ date: 2025-03-12 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: Efficient and thread-safe LRU cache.
12
+ description: Efficient and thread-safe LRU cache
13
13
  email:
14
14
  - watanabe@cadenza-tech.com
15
15
  executables: []
@@ -38,15 +38,15 @@ files:
38
38
  - lib/sin_lru_redux/util.rb
39
39
  - lib/sin_lru_redux/util/safe_sync.rb
40
40
  - lib/sin_lru_redux/version.rb
41
- homepage: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.1
41
+ homepage: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.2
42
42
  licenses:
43
43
  - MIT
44
44
  metadata:
45
- homepage_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.1
46
- source_code_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.1
47
- changelog_uri: https://github.com/cadenza-tech/sin_lru_redux/blob/v2.5.1/CHANGELOG.md
45
+ homepage_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.2
46
+ source_code_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.2
47
+ changelog_uri: https://github.com/cadenza-tech/sin_lru_redux/blob/v2.5.2/CHANGELOG.md
48
48
  bug_tracker_uri: https://github.com/cadenza-tech/sin_lru_redux/issues
49
- documentation_uri: https://rubydoc.info/gems/sin_lru_redux/2.5.1
49
+ documentation_uri: https://rubydoc.info/gems/sin_lru_redux/2.5.2
50
50
  funding_uri: https://patreon.com/CadenzaTech
51
51
  rubygems_mfa_required: 'true'
52
52
  required_jruby_version: ">= 9.4.0.0"
@@ -68,5 +68,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements: []
69
69
  rubygems_version: 3.6.2
70
70
  specification_version: 4
71
- summary: Efficient and thread-safe LRU cache.
71
+ summary: Efficient and thread-safe LRU cache
72
72
  test_files: []