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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de568748c96f4bf2a10834fb2b0fe6fb8b61d08bf7346fc2b548f670c288073a
4
- data.tar.gz: 82faf4029e6f550dcad8770ac7b9f616c0380e813983b3e61cdb6e2b6475de0c
3
+ metadata.gz: 61321fefed0750d1aee9605d563874ec8fa819e87a6a4f83197ef3b91e916518
4
+ data.tar.gz: '00328ef827c671e15748d5819e07e47594981c6f9238b77f38a481bebb009f56'
5
5
  SHA512:
6
- metadata.gz: f4187bbc733caac2d5adf803be6907b864434fddc3e80ecf17db3ea202423e1ba6dd08afbaa5f752645af9e7ec5cc448fb756322664777d16d27fd2423322a83
7
- data.tar.gz: f477e3522f689998fd84c6eb48869fd1caf10d7725e3cbc36cf6c70fd62b7785b88d8332cf338198eb30001d00051262faad0a1c45a70c0b51e3e447ed3a87ee
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RuToken
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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"