ru_token 0.1.1 → 0.1.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/ru_token/version.rb +1 -1
- metadata +1 -2
- data/ext/ru_token/.cargo/config.toml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61321fefed0750d1aee9605d563874ec8fa819e87a6a4f83197ef3b91e916518
|
4
|
+
data.tar.gz: '00328ef827c671e15748d5819e07e47594981c6f9238b77f38a481bebb009f56'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a526d699778809e8d853f556c7bd65c4ebc668bd9b6da63f2ae1feae128495e4f4fb9c9ed4359a51d119ff34e70d1a40faa6bd637d3bfdee0e06deed50324cdb
|
7
|
+
data.tar.gz: 82679714ec3a26405b5af73330bd0ec87c830a22e677f7c394c572337e78a49a6a9c239016a00f7ca364988b2c6166626c49f2560dacd3362067474d4114734d
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
---
|
11
|
+
## [0.1.2] - 2025-07-30
|
12
|
+
|
13
|
+
### Changed
|
14
|
+
- Revamped the Linux publishing workflow to use the `oxidize-rb/actions/cross-gem` action. This produces highly portable "fat" gems for Linux, resulting in several key improvements:
|
15
|
+
- Pre-compiled gems are now provided for both `glibc` (standard Linux) and `musl` (Alpine Linux) systems.
|
16
|
+
- Both Intel (`x86_64`) and ARM (`aarch64`) architectures are now supported for both `glibc` and `musl`.
|
17
|
+
- Linux gems are now compatible with a much wider range of distributions, including older enterprise versions.
|
18
|
+
|
10
19
|
---
|
11
20
|
## [0.1.1] - 2025-07-30
|
12
21
|
|
data/lib/ru_token/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ru_token
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Logan Bresnahan
|
@@ -69,7 +69,6 @@ files:
|
|
69
69
|
- LICENSE
|
70
70
|
- README.md
|
71
71
|
- Rakefile
|
72
|
-
- ext/ru_token/.cargo/config.toml
|
73
72
|
- ext/ru_token/Cargo.toml
|
74
73
|
- ext/ru_token/extconf.rb
|
75
74
|
- ext/ru_token/src/lib.rs
|
@@ -1,9 +0,0 @@
|
|
1
|
-
# This file tells Rust's build system (Cargo) how to cross-compile.
|
2
|
-
|
3
|
-
# Configuration for the aarch64-linux target
|
4
|
-
[target.aarch64-unknown-linux-gnu]
|
5
|
-
linker = "aarch64-linux-gnu-gcc"
|
6
|
-
|
7
|
-
# Configuration for the x86_64-linux target
|
8
|
-
[target.x86_64-unknown-linux-gnu]
|
9
|
-
linker = "gcc"
|