zlight_csv 0.1.0-aarch64-linux → 0.1.1-aarch64-linux

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: 41917692b4acf431c840f2ffafdbf69f42cea8f0e65e74abe311a24fd05293ac
4
- data.tar.gz: 7b2b2dd61a14b941e7c541fec8d2c2285199a34556c4a3a46ae5f24615bdc3c8
3
+ metadata.gz: 03f08458d8b03148a0a945369c97697ad7db3ba3d6a67f3c1869fc2932d0cd21
4
+ data.tar.gz: 80da34e4c72dac467ffe7bb248c368d0ef02eae176345710fe74522e889efaeb
5
5
  SHA512:
6
- metadata.gz: 5bc2e1d34f574c510a36a999b258e75eeec7731b170fe5a6e953f8b2d0d018f6447db7d4cdb096bf20cdaed3dc6858e76285d0954c64be188f30db14322efd10
7
- data.tar.gz: b74b57bb3a72cba61c9ab0729058164ad3428c31fe35a58932e7145900a9043c6408c8c21a6bbff9498924205019d6e88770c89e4c6b024876788363c6deb364
6
+ metadata.gz: 421912c62937fd59d61b2e96d5f15942df95741a29bf1c52a40edd9dd7d985df91460e9db012a94ff830f96a75a7282dc9bc30c3f9b6150d8bb2ed4933d254a5
7
+ data.tar.gz: 9ad24ada8c16312362b3290eaf549a5d59513dd7f23486cc6e5694f7f41b559343f2fe7be7e4e00bb988e2de1ffb99952ec2ca683b3a5dba6bf3f53694ed983a
data/README.md CHANGED
@@ -195,7 +195,7 @@ Releases are fully automated via GitHub Actions. When you push a version tag:
195
195
 
196
196
  ```bash
197
197
  # 1. Update version
198
- vim lib/zlight_csv/version.rb
198
+ vim VERSION
199
199
 
200
200
  # 2. Update changelog
201
201
  vim CHANGELOG.md
@@ -279,12 +279,13 @@ zlight-csv/
279
279
  ├── lib/
280
280
  │ ├── zlight_csv.rb # Main Ruby entry point
281
281
  │ └── zlight_csv/
282
- │ └── version.rb # Version constant
282
+ │ └── version.rb # Reads VERSION from gem root
283
283
  ├── spec/ # RSpec tests
284
284
  ├── benchmark/ # Performance benchmarks
285
285
  ├── Gemfile # Ruby dependencies
286
286
  ├── Rakefile # Build tasks
287
287
  ├── zlight_csv.gemspec # Gem specification
288
+ ├── VERSION # Single source of truth for release version
288
289
  └── README.md
289
290
  ```
290
291
 
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZLight
4
- VERSION = '0.1.0'
4
+ GEM_ROOT = File.expand_path('../..', __dir__)
5
+ VERSION = File.read(File.join(GEM_ROOT, 'VERSION'), encoding: 'UTF-8').strip.freeze
5
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zlight_csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Zaidan Chaudhary
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-17 00:00:00.000000000 Z
11
+ date: 2026-05-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  ZLight is a blazing-fast CSV parser that provides a drop-in replacement
@@ -24,6 +24,7 @@ files:
24
24
  - CHANGELOG.md
25
25
  - LICENSE
26
26
  - README.md
27
+ - VERSION
27
28
  - lib/zlight_csv.rb
28
29
  - lib/zlight_csv/3.0/zlight_csv.so
29
30
  - lib/zlight_csv/3.1/zlight_csv.so