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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +7 -0
- data/lib/xrpl/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b0269ba7fe6c319fca687c0a063389a358260f4c84bb5ae293f1fb6f8215b0f
|
|
4
|
+
data.tar.gz: ca8099d5daaa7f3b4e3c89cd3ea13870da4f15b60cbaeb08809edb36547121f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
+
[](https://github.com/AlexanderBuzz/xrpl-ruby/actions/workflows/ci.yml)
|
|
4
|
+
[](https://codecov.io/gh/AlexanderBuzz/xrpl-ruby)
|
|
5
|
+
[](https://rubygems.org/gems/xrpl-ruby)
|
|
6
|
+
[](https://rubygems.org/gems/xrpl-ruby)
|
|
7
|
+
[](https://www.ruby-lang.org)
|
|
8
|
+
[](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
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.
|
|
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-
|
|
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.
|
|
190
|
+
version: '3.2'
|
|
177
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
192
|
requirements:
|
|
179
193
|
- - ">="
|