reckon 0.9.4 → 0.9.5

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: 648b51c8481100983f8d8eff4d9b86ea2ad1962e0908268a6450f618d90f3267
4
- data.tar.gz: fb19e70b53da00299caa495e24d8fa01ac20686306e383f598a8888f5118dae3
3
+ metadata.gz: 489081763b4a46c0bad41cb3ff3435c505a413e3e2cdf39984ff51b6488bbcc2
4
+ data.tar.gz: c4f6cfc6bec319fd8366c5effabb6c23b086bd0b90a57f9f9f64742805a03fc1
5
5
  SHA512:
6
- metadata.gz: 56a4558fe3aadfbf9a0a9f4399f8e70b549b90a08057235fafe5839203390c462b502511fc60b748490398c75f46b5a4d8ccbb4ac9b07b4e6058d72bf615f4ac
7
- data.tar.gz: dc3acb9fdae98efc8cd4a8891037cc5bfff716b2c5db74f8b1f86edaa2da0e60843ffbcb0eeeef49358738e0a63bded19e2fa3f9955cce40566a3241cbc86aff
6
+ metadata.gz: b995bbf4939b6901fa769188a4f329a549d0ea20048a968c331fdce40c7e79174d65454d1805f5ba9a66717c7269afbdeef931af8e961a52e1327a7edbbc80e1
7
+ data.tar.gz: e5107209cf8e6da13c6484d064ec7e6e911502128d891d03590b04354ae5fa24670044e77aab2b90733882391cadb3a8adbd1a8645916b7dcb39d8811dba5070
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.9.5](https://github.com/cantino/reckon/tree/v0.9.5) (2024-01-08)
4
+
5
+ [Full Changelog](https://github.com/cantino/reckon/compare/v0.9.4...v0.9.5)
6
+
7
+ **Closed issues:**
8
+
9
+ - Ruby Readline error [\#127](https://github.com/cantino/reckon/issues/127)
10
+ - Date formats [\#126](https://github.com/cantino/reckon/issues/126)
11
+
12
+ **Merged pull requests:**
13
+
14
+ - Pin highline to 2.x branch. Fixes \#127 [\#128](https://github.com/cantino/reckon/pull/128) ([benprew](https://github.com/benprew))
15
+
16
+ ## [v0.9.4](https://github.com/cantino/reckon/tree/v0.9.4) (2023-11-24)
17
+
18
+ [Full Changelog](https://github.com/cantino/reckon/compare/v0.9.3...v0.9.4)
19
+
3
20
  ## [v0.9.3](https://github.com/cantino/reckon/tree/v0.9.3) (2023-08-25)
4
21
 
5
22
  [Full Changelog](https://github.com/cantino/reckon/compare/v0.9.2...v0.9.3)
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- reckon (0.9.4)
4
+ reckon (0.9.5)
5
5
  chronic (>= 0.3.0)
6
- highline (>= 1.5.2)
6
+ highline (~> 2.0)
7
7
  matrix (>= 0.4.2)
8
8
  rchardet (>= 1.8.0)
9
9
 
@@ -1,3 +1,3 @@
1
1
  module Reckon
2
- VERSION = "0.9.4"
2
+ VERSION = "0.9.5"
3
3
  end
data/reckon.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.add_development_dependency "pry", ">= 0.12.2"
21
21
  s.add_development_dependency "rantly", "= 1.2.0"
22
22
  s.add_runtime_dependency "chronic", ">= 0.3.0"
23
- s.add_runtime_dependency "highline", ">= 1.5.2"
23
+ s.add_runtime_dependency "highline", "~> 2.0" # 3.0 replaces readline with reline and breaks reckon
24
24
  s.add_runtime_dependency "rchardet", ">= 1.8.0"
25
25
  s.add_runtime_dependency "matrix", ">= 0.4.2"
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reckon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Cantino
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-11-24 00:00:00.000000000 Z
13
+ date: 2024-01-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec
@@ -72,16 +72,16 @@ dependencies:
72
72
  name: highline
73
73
  requirement: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - ">="
75
+ - - "~>"
76
76
  - !ruby/object:Gem::Version
77
- version: 1.5.2
77
+ version: '2.0'
78
78
  type: :runtime
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
- - - ">="
82
+ - - "~>"
83
83
  - !ruby/object:Gem::Version
84
- version: 1.5.2
84
+ version: '2.0'
85
85
  - !ruby/object:Gem::Dependency
86
86
  name: rchardet
87
87
  requirement: !ruby/object:Gem::Requirement