Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/move release notes to changelog file #152

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# 1.4.0

- Add support for `ROL` segment
- Support previously unsupported fields in `NK1` segment
- Completes and fixes `PV2` segment
- Add helpers for date formatting
- Add the ability to configure the gem thanks to the `HL7::Configuration` class

https://github.com/ruby-hl7/ruby-hl7/pull/144
https://github.com/ruby-hl7/ruby-hl7/pull/142
https://github.com/ruby-hl7/ruby-hl7/pull/138
https://github.com/ruby-hl7/ruby-hl7/pull/139
https://github.com/ruby-hl7/ruby-hl7/pull/140
https://github.com/ruby-hl7/ruby-hl7/pull/136
https://github.com/ruby-hl7/ruby-hl7/pull/135
https://github.com/ruby-hl7/ruby-hl7/pull/133
https://github.com/ruby-hl7/ruby-hl7/pull/132
https://github.com/ruby-hl7/ruby-hl7/pull/131
https://github.com/ruby-hl7/ruby-hl7/pull/128
https://github.com/ruby-hl7/ruby-hl7/pull/130
https://github.com/ruby-hl7/ruby-hl7/pull/129
https://github.com/ruby-hl7/ruby-hl7/pull/122

Thanks to:
@LucasMontorio and @mitch-lindsay

# 1.3.3
- Update RDoc
- Added TXA segment
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:
ruby-hl7 (1.3.3)
ruby-hl7 (1.4.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.3
1.4.0
2 changes: 1 addition & 1 deletion lib/ruby-hl7.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
require "helpers/time_formatter_helper"

module HL7 # :nodoc:
VERSION = "1.3.3"
VERSION = "1.4.0"
# Gives access to the current Configuration.
def self.configuration
@configuration ||= Configuration.new
Expand Down
2 changes: 1 addition & 1 deletion ruby-hl7.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = "ruby-hl7"
s.version = "1.3.3"
s.version = "1.4.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mark Guzman"]
Expand Down
Loading