tokenizers 0.3.0-aarch64-linux → 0.3.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: 373d0c9f060b073944f6fc29ccde5d76db8acb7c8dbcec33c6ca5e19c6e1d1b6
4
- data.tar.gz: 139ad4dea993c1f11d67c7a6c1accb80adb4fae19f3d1caabf53743ea7504c11
3
+ metadata.gz: f20512831534e2cbfe2c667425bba5fb537ec73d0a1598652d2faa6184bcde81
4
+ data.tar.gz: 73b3a9174cbf78123564992a7a6d4750b6ad13d94e093a1c973d04b1fc0af0e2
5
5
  SHA512:
6
- metadata.gz: 10244c830e5638aee1b825dab7b836a4a1fbdbd8ac3fa3c54b5714686299abb42c48da830345de08f523adc8ed2350f09c35c8e570744cf10999655309ea6083
7
- data.tar.gz: f0aa5dcc193e7181878baaad63f7e6f385bc555def23678bdc86abd28f403a3d65d48035c51671876f8ba3265bc804f881c131200f411f23250f98da2ea0d2c3
6
+ metadata.gz: b553514abf9e804465bb4c47751b531dafdd50f1bd9e35bc533b0a24747045e523926515249686e82c818290ff0de86232d1a6ca5080744fc8dae5abaf4f89f6
7
+ data.tar.gz: 0edc034acd7e24847bbfb6de6c452c0453de2ff20cb33779c744f388c260a55c3171bacf031b164d8ab73cd106c166f80d70ded6d36339e996dde0a50e7dc3d6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.1 (2022-02-08)
2
+
3
+ - Fixed error with Ruby 2.7
4
+
1
5
  ## 0.3.0 (2022-02-07)
2
6
 
3
7
  - Added support for training tokenizers
data/Cargo.lock CHANGED
@@ -711,7 +711,7 @@ dependencies = [
711
711
 
712
712
  [[package]]
713
713
  name = "tokenizers"
714
- version = "0.2.3"
714
+ version = "0.3.1"
715
715
  dependencies = [
716
716
  "magnus",
717
717
  "onig",
Binary file
Binary file
Binary file
Binary file
@@ -44,7 +44,7 @@ module Tokenizers
44
44
  def cached_path(cache_dir, url, options)
45
45
  fsum = Digest::SHA256.hexdigest(url)
46
46
  meta_paths = Dir[File.join(cache_dir, "#{fsum}.*.meta")]
47
- meta = meta_paths.map { |f| JSON.load_file(f) }.max_by { |m| m["creation_time"] }
47
+ meta = meta_paths.map { |f| JSON.parse(File.read(f)) }.max_by { |m| m["creation_time"] }
48
48
  etag = meta["etag"] if meta
49
49
 
50
50
  if etag
@@ -1,3 +1,3 @@
1
1
  module Tokenizers
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tokenizers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-08 00:00:00.000000000 Z
11
+ date: 2023-02-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: andrew@ankane.org