sin_lru_redux 2.5.0 → 2.5.1

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: 9d2e703acd20c2c53c25cd48b9825141b56dbccc618922b8ce9cbacb775f34d7
4
- data.tar.gz: d4a5fc8a84c63320d0194aa22f5d6bbf6b85de284b8793bec2b9f70e5d1493cd
3
+ metadata.gz: ff8de8966a9a288fa43e66461aaf804e2e10f4dded516597c12e242c66cfe681
4
+ data.tar.gz: f93a0589c337befa2de5134d38c60a2ae380c93eb7d20b25423dd68a845c21f0
5
5
  SHA512:
6
- metadata.gz: 5f23cdad526c465dc8932e8ab9ac4e533cec384ee745c130ce0c4253637318db2e8754485a7bbbab2df70e8d927f258751d2f6dd296997f0d835aad9afd1f611
7
- data.tar.gz: c00bc3cbd2dd6a496165b91c979336f3a247bdced9d6b0bc4feff6c87e4f301bb67ac518b625bb9897fcbb59b5e5fc8127ebec89d9aa2e4ce7c99140a9c33b1e
6
+ metadata.gz: 69807c37d3b28a61077235ad2d49fc1f9afab0537a746bff25a0ec19979159e078f1496945b8a24dce934063bd985dbc8e93e45429620b912dde1c0434c65626
7
+ data.tar.gz: 15f6aa14fd2b1929c3440c0978dd3bcf2cfbb4bf38b03f5d5f08cf0861018999a28998ae028939646f0787b96119ba2bfa4474c5202e4e8759378a545f8bd425
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.5.1] - 2025-3-5
4
+
5
+ - Other: Update summary
6
+ - Other: Update .rubocop.yml
7
+ - Other: Add .editorconfig
8
+ - Other Update README.md
9
+
3
10
  ## [2.5.0] - 2025-1-17
4
11
 
5
12
  - New: Add SinLruRedux module compatible with LruRedux module
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SinLruRedux
2
2
 
3
- [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/cadenza-tech/sin_lru_redux/blob/main/LICENSE.txt) [![tag](https://img.shields.io/github/tag/cadenza-tech/sin_lru_redux.svg?logo=github&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)
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
5
  Efficient and thread-safe LRU cache.
6
6
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LruRedux
4
- VERSION = '2.5.0'
4
+ VERSION = '2.5.1'
5
5
  end
metadata CHANGED
@@ -1,17 +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.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-17 00:00:00.000000000 Z
10
+ date: 2025-03-05 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: |
13
- Efficient and thread-safe LRU cache.
14
- Forked from LruRedux.
12
+ description: Efficient and thread-safe LRU cache.
15
13
  email:
16
14
  - watanabe@cadenza-tech.com
17
15
  executables: []
@@ -40,15 +38,15 @@ files:
40
38
  - lib/sin_lru_redux/util.rb
41
39
  - lib/sin_lru_redux/util/safe_sync.rb
42
40
  - lib/sin_lru_redux/version.rb
43
- homepage: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.0
41
+ homepage: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.1
44
42
  licenses:
45
43
  - MIT
46
44
  metadata:
47
- homepage_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.0
48
- source_code_uri: https://github.com/cadenza-tech/sin_lru_redux/tree/v2.5.0
49
- changelog_uri: https://github.com/cadenza-tech/sin_lru_redux/blob/v2.5.0/CHANGELOG.md
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
50
48
  bug_tracker_uri: https://github.com/cadenza-tech/sin_lru_redux/issues
51
- documentation_uri: https://rubydoc.info/gems/sin_lru_redux/2.5.0
49
+ documentation_uri: https://rubydoc.info/gems/sin_lru_redux/2.5.1
52
50
  funding_uri: https://patreon.com/CadenzaTech
53
51
  rubygems_mfa_required: 'true'
54
52
  required_jruby_version: ">= 9.4.0.0"