-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump version to 0.3.0.rc1 * update changelog * add publish script * update links in gemspec * fix links
- Loading branch information
1 parent
85ccd83
commit 4cc0aec
Showing
5 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# 0.3.0.rc1 | ||
* Initial release candidate for 0.3.0 | ||
|
||
# 0.2.0 | ||
|
||
# 0.2.0.rc4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec| | |
spec.email = ['[email protected]'] | ||
spec.summary = 'Inferno Core is an open source tool for testing data exchanges enabled by the FHIR standand' | ||
spec.description = 'Inferno Core is an open source tool for testing data exchanges enabled by the FHIR standand' | ||
spec.homepage = 'https://github.com/inferno_community/inferno-core' | ||
spec.homepage = 'https://github.com/inferno-framework/inferno-core' | ||
spec.license = 'Apache-2.0' | ||
spec.add_runtime_dependency 'activesupport', '~> 6.1' | ||
spec.add_runtime_dependency 'blueprinter', '0.25.2' | ||
|
@@ -45,8 +45,8 @@ Gem::Specification.new do |spec| | |
spec.add_development_dependency 'yard', '0.9.26' | ||
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0') | ||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/inferno_community/inferno-core' | ||
spec.metadata['changelog_uri'] = 'https://github.com/inferno_community/inferno-core/CHANGELOG.md' | ||
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/inferno-core' | ||
spec.metadata['changelog_uri'] = 'https://github.com/inferno-framework/inferno-core/blob/main/CHANGELOG.md' | ||
spec.files = [ | ||
'lib/inferno.rb', | ||
'LICENSE', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
module Inferno | ||
VERSION = '0.2.0'.freeze | ||
# Standard patterns for gem versions: https://guides.rubygems.org/patterns/ | ||
VERSION = '0.3.0.rc1'.freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
npm run build | ||
gem build inferno_core.gemspec | ||
gem push inferno_core*.gem |