From 6e6151675e7f0163d0e781ea6e482cdaece771b3 Mon Sep 17 00:00:00 2001 From: Ed Porras Date: Tue, 21 May 2019 17:13:18 +0200 Subject: [PATCH] Version bump to v0.6.2 --- CHANGELOG.md | 4 ++++ README.md | 5 ++++- lib/edn_turbo/version.rb | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1bd9f2..2af424e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 5f738f4..5f7782b 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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`. diff --git a/lib/edn_turbo/version.rb b/lib/edn_turbo/version.rb index 605f53b..654f2c9 100644 --- a/lib/edn_turbo/version.rb +++ b/lib/edn_turbo/version.rb @@ -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