jwt 2.10.0 → 2.10.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/lib/jwt/version.rb +1 -3
  4. metadata +4 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc5cd58ec8821cfc743d4dc35f70eb1297d49cda060220d895ca334e8ab06345
4
- data.tar.gz: 44401e7eab75b75a1cb37abc2fc58a6dcff84103bc99625880c8c3be525aabea
3
+ metadata.gz: dcc16f3a25f01facd96faaf83722fd6d45e2a2fa80539e68727cee1a6df71cc1
4
+ data.tar.gz: 241e7ef393bd3c40356e730466e32d45bc63f0d4e9983d2c40c7bef2424334fa
5
5
  SHA512:
6
- metadata.gz: 80e7845a017b409105cad8d3ac3c7cc233b0cdc3e071715406b0a43e73a4b56f35fb6d5fe2c3786c10059d30809ffe0bdbb12e7438376dff9069f3a766f476f1
7
- data.tar.gz: ab86ff7dba44c40358d5d14b18a7346412fa7081635fb2995102ddb3b26b352ff68cb9e0d001aa3e7986cea4a1ea0c096cbc1824f4be14573414cf74d15b8e6b
6
+ metadata.gz: dffc0046d44c6a5d03538bbd9f0870da9142873ea5ffbb186ccfd339324d3e4c0c1f2e104c668f819047f54573717cd396b1bf8cb96a9a971cf02f6151100bfe
7
+ data.tar.gz: d86d34077d0fe9d760d72bd176262fafedcea294dada4e95f33b2a0bbeb9995f8e9e3f8d6225cff3cdd480d981dfa40da396683a662cdabc9410266fbde0709f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [v2.10.1](https://github.com/jwt/ruby-jwt/tree/v2.10.1) (2024-12-26)
4
+
5
+ **Fixes and enhancements:**
6
+
7
+ - Make version constants public again [#646](https://github.com/jwt/ruby-jwt/pull/646) ([@anakinj]
8
+
3
9
  ## [v2.10.0](https://github.com/jwt/ruby-jwt/tree/v2.10.0) (2024-12-25)
4
10
 
5
11
  [Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.3...v2.10.0)
data/lib/jwt/version.rb CHANGED
@@ -16,12 +16,10 @@ module JWT
16
16
  module VERSION
17
17
  MAJOR = 2
18
18
  MINOR = 10
19
- TINY = 0
19
+ TINY = 1
20
20
  PRE = nil
21
21
 
22
22
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
23
-
24
- private_constant(:MAJOR, :MINOR, :TINY, :PRE)
25
23
  end
26
24
 
27
25
  # Checks if the OpenSSL version is 3 or greater.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwt
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.0
4
+ version: 2.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Rudat
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-25 00:00:00.000000000 Z
10
+ date: 2024-12-26 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: base64
@@ -181,9 +180,8 @@ licenses:
181
180
  - MIT
182
181
  metadata:
183
182
  bug_tracker_uri: https://github.com/jwt/ruby-jwt/issues
184
- changelog_uri: https://github.com/jwt/ruby-jwt/blob/v2.10.0/CHANGELOG.md
183
+ changelog_uri: https://github.com/jwt/ruby-jwt/blob/v2.10.1/CHANGELOG.md
185
184
  rubygems_mfa_required: 'true'
186
- post_install_message:
187
185
  rdoc_options: []
188
186
  require_paths:
189
187
  - lib
@@ -198,8 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
196
  - !ruby/object:Gem::Version
199
197
  version: '0'
200
198
  requirements: []
201
- rubygems_version: 3.5.22
202
- signing_key:
199
+ rubygems_version: 3.6.2
203
200
  specification_version: 4
204
201
  summary: JSON Web Token implementation in Ruby
205
202
  test_files: []