Skip to content

Commit

Permalink
Allow new values for ISA elements; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tcd committed Jun 24, 2020
1 parent 73616e0 commit 5024fe7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## master (unreleased) -->

## 0.9.2 (2020-07-24)

### Changed

- Update allowed values for elements `I10` and `I11`


## 0.9.1 (2020-07-23)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/eddy/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Eddy
VERSION = "0.9.1".freeze()
VERSION = "0.9.2".freeze()
end

0 comments on commit 5024fe7

Please sign in to comment.