Skip to content

Commit

Permalink
Version bump to v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
edporras committed May 21, 2019
1 parent 93c4f96 commit 6e61516
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 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.6.2 - 2019-05-21
### Fixed
- Handling of ##Inf, ##Nan, et al.

## 0.6.1 - 2019-05-20
### Added
- Implement parsing of Ratio literals, represented as a ruby Rational.
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
edn_turbo 0.6.1
edn_turbo 0.6.2
===============

Fast [Ragel](http://www.colm.net/open-source/ragel/)-based EDN parser for Ruby.
Expand Down Expand Up @@ -109,3 +109,6 @@ calls into the ruby side.

- As of v0.6.1, `edn_turbo` supports EDN ratio literals, returning a
ruby Rational representation for them. See https://github.com/edn-format/edn/issues/64.

- As of v0.6.2, `edn_turbo` supports representation of `##Inf` as
`Float::INFINITY` and `##NaN` as `Float::NAN`.
4 changes: 2 additions & 2 deletions lib/edn_turbo/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
# THE SOFTWARE.

module EDNT
VERSION = '0.6.1'.freeze
RELEASE_DATE = '2019-05-20'.freeze
VERSION = '0.6.2'.freeze
RELEASE_DATE = '2019-05-21'.freeze
end

0 comments on commit 6e61516

Please sign in to comment.