Skip to content

Commit

Permalink
Version 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
edporras committed Sep 20, 2021
1 parent 40baf95 commit dc35103
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 34 deletions.
48 changes: 26 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,51 +1,55 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## 0.7.1 - 2021-02-07
## [0.7.2] - 2021-09-20
### Changed
- Set minimum ruby version to 2.5
* allow rake versions > 12

## [0.7.1] - 2021-02-07
### Changed
* Set minimum ruby version to 2.5

### Fixed
- Compilation error when building against ruby versions > 2
* Compilation error when building against ruby versions > 2

## 0.7.0 - 2020-02-07
## [0.7.0] - 2020-02-07
### Added
- big_decimal_edn_turbo method to replace calling edn-ruby's
* big_decimal_edn_turbo method to replace calling edn-ruby's
big_decimal as it breaks things in ruby 2.7 and up

### Changed
- Removed compiler warning due to scalar wrapped in braces
- Updated docker configs to use latest 2.4 and 2.6 ruby
* Removed compiler warning due to scalar wrapped in braces
* Updated docker configs to use latest 2.4 and 2.6 ruby
versions. Added 2.5 and 2.7 too.

## 0.6.2 - 2019-05-21
## [0.6.2] - 2019-05-21
### Fixed
- Handling of ##Inf, ##Nan, et al.
* Handling of ##Inf, ##Nan, et al.

## 0.6.1 - 2019-05-20
## [0.6.1] - 2019-05-20
### Added
- Implement parsing of Ratio literals, represented as a ruby Rational.
* Implement parsing of Ratio literals, represented as a ruby Rational.

### Fixed
- Parsing of exact precision types.
* Parsing of exact precision types.

### Changed
- Build lists using EDN::list method that was previously broken.

* Build lists using EDN::list method that was previously broken.

## 0.6.0 - 2019-05-13
## [0.6.0] - 2019-05-13
### Changed
- switched from MiniTest to RSpec.
- replaced `NULL` with `nullptr`.
- replaced old-style casts.
- prohibit Parser copy and move ops.
- assigning a source that does not respond to `read` now throws
* switched from MiniTest to RSpec.
* replaced `NULL` with `nullptr`.
* replaced old-style casts.
* prohibit Parser copy and move ops.
* assigning a source that does not respond to `read` now throws
`ArgumentError` instead of `RuntimeError`.

### Added
- initial version of docker configs for testing on Ubuntu.
* initial version of docker configs for testing on Ubuntu.

[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...main
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.2...main
[0.7.2]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/edporras/edn_turbo/-/compare/0.6.2...0.7.0
[0.6.2]: https://github.com/edporras/edn_turbo/-/compare/0.6.1...0.6.2
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2019 Ed Porras
Copyright (c) 2015-2021 Ed Porras

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
edn_turbo 0.7.1
edn_turbo 0.7.2
===============

Fast [Ragel](http://www.colm.net/open-source/ragel/)-based EDN parser for Ruby.
Expand Down
16 changes: 8 additions & 8 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
version: "3"
services:

rb-3.0.0:
image: digressed/test:edn_turbo-rb-3.0.0
rb-3.0.2:
image: digressed/test:edn_turbo-rb-3.0.2
stdin_open: true
tty: true

rb-2.7.2:
image: digressed/test:edn_turbo-rb-2.7.2
rb-2.7.4:
image: digressed/test:edn_turbo-rb-2.7.4
stdin_open: true
tty: true

rb-2.6.6:
image: digressed/test:edn_turbo-rb-2.6.6
rb-2.6.8:
image: digressed/test:edn_turbo-rb-2.6.8
stdin_open: true
tty: true

rb-2.5.8:
image: digressed/test:edn_turbo-rb-2.5.8
rb-2.5.9:
image: digressed/test:edn_turbo-rb-2.5.9
stdin_open: true
tty: true
4 changes: 2 additions & 2 deletions lib/edn_turbo/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
# THE SOFTWARE.

module EDNT
VERSION = '0.7.1'
RELEASE_DATE = '2021-02-07'
VERSION = '0.7.2'
RELEASE_DATE = '2021-09-20'
end

0 comments on commit dc35103

Please sign in to comment.