From 18914e66fd392c52d2d5d019e1ed388d9386498f Mon Sep 17 00:00:00 2001 From: Clay Dunston Date: Mon, 6 Jan 2020 00:06:26 -0600 Subject: [PATCH] Bump version --- CHANGELOG.md | 16 ++++++++++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/eddy/version.rb | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd6a336..cd70920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,22 @@ All code should be considered Work In Progress. While the API is still changing, enough code exists that EDI documents can currently be written with Eddy (though I wouldn't recommend use in production environments yet). +## 0.5.0 (2020-01-05) + +### Changed + +- Updated the implementation of `Eddy::Interchange` and `Eddy::FunctionalGroup` +- Added arguments to the `initialize` methods of the following classes: + - `Eddy::Segments::GS` + - `Eddy::Segments::GE` + - `Eddy::Segments::ISA` + - `Eddy::Segments::IEA` +- Slightly modified file/folder layout. + +### Removed + +- `Eddy::SimpleInterchange` and its associated test. + ## 0.4.0 (2020-01-05) ### Added diff --git a/Gemfile.lock b/Gemfile.lock index ac0e5da..9d2efc8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - eddy (0.4.0) + eddy (0.5.0) ginny (~> 0.6.3) json_schemer (~> 0.2.8) thor (~> 1.0.1) diff --git a/README.md b/README.md index a7b42bb..92fbb7d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [travis-ci]: https://travis-ci.org/tcd/eddy [coveralls]: https://coveralls.io/github/tcd/eddy?branch=master [license]: https://github.com/tcd/eddy/blob/master/LICENSE.txt -[docs]: https://www.rubydoc.info/gems/eddy/0.4.0 +[docs]: https://www.rubydoc.info/gems/eddy/0.5.0 ## Installation diff --git a/lib/eddy/version.rb b/lib/eddy/version.rb index 6829746..f73c685 100644 --- a/lib/eddy/version.rb +++ b/lib/eddy/version.rb @@ -1,3 +1,3 @@ module Eddy - VERSION = "0.4.0".freeze + VERSION = "0.5.0".freeze end