xrpl-ruby 0.6.0 → 0.6.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 (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/README.md +7 -0
  4. data/lib/xrpl/version.rb +1 -1
  5. metadata +17 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a26ce8102c50640eec9433b64a9296c7d92635d66c42f2995456d913fff60d75
4
- data.tar.gz: 60d3c026f1378a1d7cb79adcd6bbf830d518bb554b35286fe980010a14f4f11a
3
+ metadata.gz: 0b0269ba7fe6c319fca687c0a063389a358260f4c84bb5ae293f1fb6f8215b0f
4
+ data.tar.gz: ca8099d5daaa7f3b4e3c89cd3ea13870da4f15b60cbaeb08809edb36547121f3
5
5
  SHA512:
6
- metadata.gz: 975f1af5db2890d44ba6ac7266c2a927dc5e8bf4d3000a8e70bd864734dbba1e90495718b48300df5ca183077076de844b00c2844aa87c050d61263d5e43a12a
7
- data.tar.gz: 85a70a5ebc31bde02941394182c93aeb1c09a57987fbadfcbac26efdd16e1b30fe786d1aefdefd2ee1fa3cf742b18dbde2edbb2983052869b8165411b6207fd5
6
+ metadata.gz: a63151ad5c6885136417783f1234d6af8e32ea8346ce514430c8c65458dae0a0917cae0f8c2f1f7111c623e7e8098cc0b96643fbebbfd60554cd86f9c3cbd847
7
+ data.tar.gz: f32401a94218f1ae9621c4ba21f64c994b08f3d3128f2e2b159175c2aad195d8f7050ca094454ad084ad5c4aef80a9e71750401462a541b1f346b12bb581a05b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.6.1] - 2026-08-12
9
+
10
+ ### Added
11
+ - CI matrix now covers Ruby 3.2, 3.3, 3.4 and (experimental) 4.0.
12
+
13
+ ### Changed
14
+ - Raised minimum Ruby to **3.2**; dropped end-of-life 3.0 and 3.1 from the support matrix.
15
+
16
+ ### Fixed
17
+ - **Ruby 3.4 / 4.0 compatibility**: declare `bigdecimal` as an explicit runtime dependency.
18
+ It was removed from Ruby's default gems in 3.4, which broke `require 'bigdecimal'` in the
19
+ binary codec on Ruby 3.4 and 4.0.
20
+
8
21
  ## [0.6.0] - 2026-08-05
9
22
 
10
23
  ### Added
data/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # XRPL-Ruby
2
2
 
3
+ [![CI](https://github.com/AlexanderBuzz/xrpl-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/AlexanderBuzz/xrpl-ruby/actions/workflows/ci.yml)
4
+ [![codecov](https://codecov.io/gh/AlexanderBuzz/xrpl-ruby/branch/main/graph/badge.svg)](https://codecov.io/gh/AlexanderBuzz/xrpl-ruby)
5
+ [![Gem Version](https://badge.fury.io/rb/xrpl-ruby.svg)](https://rubygems.org/gems/xrpl-ruby)
6
+ [![Downloads](https://img.shields.io/gem/dt/xrpl-ruby)](https://rubygems.org/gems/xrpl-ruby)
7
+ [![Ruby](https://img.shields.io/badge/ruby->=_3.0-CC342D?logo=ruby&logoColor=white)](https://www.ruby-lang.org)
8
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
9
+
3
10
  A pure-Ruby library to interact with the [XRP Ledger](https://xrpl.org) (XRPL) blockchain.
4
11
 
5
12
  ## Features
data/lib/xrpl/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XRPL
4
- VERSION = '0.6.0'
4
+ VERSION = '0.6.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xrpl-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Busse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-08 00:00:00.000000000 Z
11
+ date: 2026-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bigdecimal
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.1'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: ed25519
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -173,7 +187,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
187
  requirements:
174
188
  - - ">="
175
189
  - !ruby/object:Gem::Version
176
- version: '3.0'
190
+ version: '3.2'
177
191
  required_rubygems_version: !ruby/object:Gem::Requirement
178
192
  requirements:
179
193
  - - ">="