diff --git a/CHANGELOG.md b/CHANGELOG.md index 799a601..924e80e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.9.2 (2020-07-24) + +### Changed + +- Update allowed values for elements `I10` and `I11` + + ## 0.9.1 (2020-07-23) ### Fixed diff --git a/Gemfile.lock b/Gemfile.lock index db75ba1..acaa993 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - eddy (0.9.1) + eddy (0.9.2) ginny (~> 0.6.3) json_schemer (~> 0.2.8) thor (~> 1.0.1) diff --git a/README.md b/README.md index 5a94b0b..e29269a 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.9.1 +[docs]: https://www.rubydoc.info/gems/eddy/0.9.2 ## Installation diff --git a/lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb b/lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb index b15effc..cde67cb 100644 --- a/lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb +++ b/lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb @@ -4,14 +4,14 @@ module Elements # # - Id: I10 # - Name: Interchange Control Standards Identifier - # - Type: ID + # - Type: AN (Should be ID) # - Min/Max: 1/1 # - Description: Code to identify the agency responsible for the control standard used by the message that is enclosed by the interchange header and trailer # # ### Notes: # # - (Default value: `"U"`) - class I10 < Eddy::Models::Element::ID + class I10 < Eddy::Models::Element::AN # @param val [String] ("U") # @param req [String] (nil) diff --git a/lib/definitions/elements/manual/i/I11.interchange_control_version_number.rb b/lib/definitions/elements/manual/i/I11.interchange_control_version_number.rb index b995a83..d783ada 100644 --- a/lib/definitions/elements/manual/i/I11.interchange_control_version_number.rb +++ b/lib/definitions/elements/manual/i/I11.interchange_control_version_number.rb @@ -47,6 +47,7 @@ def code_list() "00400", # Standard Issued as ANSI X12.5-1997 "00401", # Draft Standards for Trial Use Approved for Publication by ASC X12 Procedures Review Board through October 1997 "00402", # Draft Standards for Trial Use Approved for Publication by ASC X12 Procedures Review Board through October 1998 + "00501", ] end diff --git a/lib/eddy/version.rb b/lib/eddy/version.rb index 8678d1e..7c77499 100644 --- a/lib/eddy/version.rb +++ b/lib/eddy/version.rb @@ -1,3 +1,3 @@ module Eddy - VERSION = "0.9.1".freeze() + VERSION = "0.9.2".freeze() end