annex_29 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f75649a14a18b7d666e2cf04b18d144fc4ad66cf203d9707ece3794d7485d0f6
4
- data.tar.gz: 0f0d5583462a3e3fb13150d6ebeabc3304e77009207371bf6dfb654f7b97d633
3
+ metadata.gz: cc1576551585e266120d71025afc04dad1e1736c4a8af9ad8ea7007de3f9f0a4
4
+ data.tar.gz: 2deb9476413c3b45f041db13de6fa52cd1293d6542773fec025690bcbb07d9f7
5
5
  SHA512:
6
- metadata.gz: 61a738b96ece05bd6021d082e656dfedf25fc30ea8e7abdeb8cefe90968e5424ecb15881d9fcce714a33c1a282e57f6a36d5430e59f8cba593fdc29f353dd3d8
7
- data.tar.gz: 8e6a1ab2006341cd08d1d2115f038b3033b61de18e17c5d7e5988d52646269fb9e163c116bfa474eefb7d4eca5441c1203d38fb8833d528cda74b0956fb7fa40
6
+ metadata.gz: b0e5d916066b1773dadf9935f9cbf7946d8fb1348c24041841336cf78368fda6957b19acb6ce89381c70ab97ffc8b7f8864b0df0e5ac164eeecec3e314d08f29
7
+ data.tar.gz: 0c63470f4138883a2028c4087914e33a23e21e10d320e7989dc3e237616e485b7fa0c4769378017295813dc5265377ab8ad8ff0f33cb914390ef835e20e1da1b
@@ -0,0 +1,9 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ open-pull-requests-limit: 100
8
+ insecure-external-code-execution: allow
9
+ registries: "*"
data/CHANGELOG.md CHANGED
@@ -31,6 +31,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
31
31
 
32
32
  ---
33
33
 
34
+ [0.2.1] - 2024-06-30
35
+ - Fix mismatched indentation warnings in word_segmentation.rb file
36
+ - Delete unused variables
37
+
34
38
  [0.2.0] - 2023-12-11
35
39
 
36
40
  - Add .ruby-version, Gemfile.lock, and GH test suite [#3](https://github.com/Shopify/annex-29/pull/3)
data/Gemfile.lock CHANGED
@@ -1,26 +1,26 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- annex_29 (0.2.0)
4
+ annex_29 (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- diff-lcs (1.5.0)
10
- rake (13.1.0)
11
- rspec (3.12.0)
12
- rspec-core (~> 3.12.0)
13
- rspec-expectations (~> 3.12.0)
14
- rspec-mocks (~> 3.12.0)
15
- rspec-core (3.12.2)
16
- rspec-support (~> 3.12.0)
17
- rspec-expectations (3.12.3)
9
+ diff-lcs (1.5.1)
10
+ rake (13.2.1)
11
+ rspec (3.13.0)
12
+ rspec-core (~> 3.13.0)
13
+ rspec-expectations (~> 3.13.0)
14
+ rspec-mocks (~> 3.13.0)
15
+ rspec-core (3.13.0)
16
+ rspec-support (~> 3.13.0)
17
+ rspec-expectations (3.13.0)
18
18
  diff-lcs (>= 1.2.0, < 2.0)
19
- rspec-support (~> 3.12.0)
20
- rspec-mocks (3.12.6)
19
+ rspec-support (~> 3.13.0)
20
+ rspec-mocks (3.13.0)
21
21
  diff-lcs (>= 1.2.0, < 2.0)
22
- rspec-support (~> 3.12.0)
23
- rspec-support (3.12.1)
22
+ rspec-support (~> 3.13.0)
23
+ rspec-support (3.13.0)
24
24
 
25
25
  PLATFORMS
26
26
  arm64-darwin-22
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Annex29
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end