edn_turbo 0.7.1 → 0.7.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 +4 -4
- data/CHANGELOG.md +26 -22
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/docker/docker-compose.yml +8 -8
- data/lib/edn_turbo/version.rb +2 -2
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3a019b63b2ae2c41aa11bf484c883a240d45a2ec3e7a8993bf46823e69a209b
|
|
4
|
+
data.tar.gz: 84e52336caffb1b3bfc25b7ba468689e8a564bbc4cc633f56415d0c95b09655f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b026cd6b1c43b6e571f2be7647cb249ed740f8af4a23b2208051ec0835968561044ff7c87775ec3dbd4d378bdaa62c8b58ce027e65f8a35cfd93bd4c8a3431b4
|
|
7
|
+
data.tar.gz: c73e78a41f638fedf58baa8157261ae0063d0fd88cdc3cf1e74e654f3f4f68110bd7f0ab74ab444e1f9b18d2a421370ba0dccfbf6eeb1f1a825e6435c5cd52c5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,51 +1,55 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
|
|
3
3
|
|
|
4
|
-
## 0.7.
|
|
4
|
+
## [0.7.2] - 2021-09-20
|
|
5
5
|
### Changed
|
|
6
|
-
|
|
6
|
+
* allow rake versions > 12
|
|
7
|
+
|
|
8
|
+
## [0.7.1] - 2021-02-07
|
|
9
|
+
### Changed
|
|
10
|
+
* Set minimum ruby version to 2.5
|
|
7
11
|
|
|
8
12
|
### Fixed
|
|
9
|
-
|
|
13
|
+
* Compilation error when building against ruby versions > 2
|
|
10
14
|
|
|
11
|
-
## 0.7.0 - 2020-02-07
|
|
15
|
+
## [0.7.0] - 2020-02-07
|
|
12
16
|
### Added
|
|
13
|
-
|
|
17
|
+
* big_decimal_edn_turbo method to replace calling edn-ruby's
|
|
14
18
|
big_decimal as it breaks things in ruby 2.7 and up
|
|
15
19
|
|
|
16
20
|
### Changed
|
|
17
|
-
|
|
18
|
-
|
|
21
|
+
* Removed compiler warning due to scalar wrapped in braces
|
|
22
|
+
* Updated docker configs to use latest 2.4 and 2.6 ruby
|
|
19
23
|
versions. Added 2.5 and 2.7 too.
|
|
20
24
|
|
|
21
|
-
## 0.6.2 - 2019-05-21
|
|
25
|
+
## [0.6.2] - 2019-05-21
|
|
22
26
|
### Fixed
|
|
23
|
-
|
|
27
|
+
* Handling of ##Inf, ##Nan, et al.
|
|
24
28
|
|
|
25
|
-
## 0.6.1 - 2019-05-20
|
|
29
|
+
## [0.6.1] - 2019-05-20
|
|
26
30
|
### Added
|
|
27
|
-
|
|
31
|
+
* Implement parsing of Ratio literals, represented as a ruby Rational.
|
|
28
32
|
|
|
29
33
|
### Fixed
|
|
30
|
-
|
|
34
|
+
* Parsing of exact precision types.
|
|
31
35
|
|
|
32
36
|
### Changed
|
|
33
|
-
|
|
34
|
-
|
|
37
|
+
* Build lists using EDN::list method that was previously broken.
|
|
35
38
|
|
|
36
|
-
## 0.6.0 - 2019-05-13
|
|
39
|
+
## [0.6.0] - 2019-05-13
|
|
37
40
|
### Changed
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
* switched from MiniTest to RSpec.
|
|
42
|
+
* replaced `NULL` with `nullptr`.
|
|
43
|
+
* replaced old-style casts.
|
|
44
|
+
* prohibit Parser copy and move ops.
|
|
45
|
+
* assigning a source that does not respond to `read` now throws
|
|
43
46
|
`ArgumentError` instead of `RuntimeError`.
|
|
44
47
|
|
|
45
48
|
### Added
|
|
46
|
-
|
|
49
|
+
* initial version of docker configs for testing on Ubuntu.
|
|
47
50
|
|
|
48
|
-
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.
|
|
51
|
+
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...main
|
|
52
|
+
[0.7.2]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...0.7.2
|
|
49
53
|
[0.7.1]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...0.7.1
|
|
50
54
|
[0.7.0]: https://github.com/edporras/edn_turbo/-/compare/0.6.2...0.7.0
|
|
51
55
|
[0.6.2]: https://github.com/edporras/edn_turbo/-/compare/0.6.1...0.6.2
|
data/LICENSE
CHANGED
data/README.md
CHANGED
data/docker/docker-compose.yml
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
version: "3"
|
|
2
2
|
services:
|
|
3
3
|
|
|
4
|
-
rb-3.0.
|
|
5
|
-
image: digressed/test:edn_turbo-rb-3.0.
|
|
4
|
+
rb-3.0.2:
|
|
5
|
+
image: digressed/test:edn_turbo-rb-3.0.2
|
|
6
6
|
stdin_open: true
|
|
7
7
|
tty: true
|
|
8
8
|
|
|
9
|
-
rb-2.7.
|
|
10
|
-
image: digressed/test:edn_turbo-rb-2.7.
|
|
9
|
+
rb-2.7.4:
|
|
10
|
+
image: digressed/test:edn_turbo-rb-2.7.4
|
|
11
11
|
stdin_open: true
|
|
12
12
|
tty: true
|
|
13
13
|
|
|
14
|
-
rb-2.6.
|
|
15
|
-
image: digressed/test:edn_turbo-rb-2.6.
|
|
14
|
+
rb-2.6.8:
|
|
15
|
+
image: digressed/test:edn_turbo-rb-2.6.8
|
|
16
16
|
stdin_open: true
|
|
17
17
|
tty: true
|
|
18
18
|
|
|
19
|
-
rb-2.5.
|
|
20
|
-
image: digressed/test:edn_turbo-rb-2.5.
|
|
19
|
+
rb-2.5.9:
|
|
20
|
+
image: digressed/test:edn_turbo-rb-2.5.9
|
|
21
21
|
stdin_open: true
|
|
22
22
|
tty: true
|
data/lib/edn_turbo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edn_turbo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ed Porras
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: edn
|
|
@@ -28,16 +28,22 @@ dependencies:
|
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '12.3'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '14.0'
|
|
34
37
|
type: :runtime
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
40
|
requirements:
|
|
38
|
-
- - "
|
|
41
|
+
- - ">="
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
43
|
version: '12.3'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '14.0'
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
name: rake-compiler
|
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -167,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
173
|
- !ruby/object:Gem::Version
|
|
168
174
|
version: '0'
|
|
169
175
|
requirements: []
|
|
170
|
-
rubygems_version: 3.2.
|
|
176
|
+
rubygems_version: 3.2.22
|
|
171
177
|
signing_key:
|
|
172
178
|
specification_version: 3
|
|
173
179
|
summary: Read EDN files
|