Skip to content

Commit

Permalink
Version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edporras committed Feb 7, 2021
1 parent b2f3ac2 commit 3b6366e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# 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/).

## [Unreleased]



## 0.7.1 - 2021-02-07
### Changed
- Set minimum ruby version to 2.5
Expand Down Expand Up @@ -49,7 +45,8 @@ All notable changes to this project will be documented in this file. This change
### Added
- initial version of docker configs for testing on Ubuntu.

[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.0...main
[Unreleased]: https://github.com/edporras/edn_turbo/-/compare/0.7.1...main
[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
[0.6.1]: https://github.com/edporras/edn_turbo/-/compare/0.6.0...0.6.1
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
edn_turbo 0.7.0
edn_turbo 0.7.1
===============

Fast [Ragel](http://www.colm.net/open-source/ragel/)-based EDN parser for Ruby.
Expand Down Expand Up @@ -34,7 +34,7 @@ irb(main):008:0> Benchmark.realtime { 100000.times { EDN::read(s) } }
Dependencies
============

Ruby 2.4 or greater as `edn_turbo` does not use the deprecated `Fixnum` or `Bignum`.
Ruby 2.6 or greater.

- ruby gems:
- [rake](http://rake.rubyforge.org)
Expand Down Expand Up @@ -112,3 +112,5 @@ calls into the ruby side.

- As of v0.6.2, `edn_turbo` supports representation of `##Inf` as
`Float::INFINITY` and `##NaN` as `Float::NAN`.

- As of v0.7.1, `edn_turbo` requires ruby 2.5 or greater.
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.0'
RELEASE_DATE = '2020-02-07'
VERSION = '0.7.1'
RELEASE_DATE = '2021-02-07'
end

0 comments on commit 3b6366e

Please # to comment.