Skip to content

Commit

Permalink
Release 0.3.0.rc1 (#161)
Browse files Browse the repository at this point in the history
* bump version to 0.3.0.rc1

* update changelog

* add publish script

* update links in gemspec

* fix links
  • Loading branch information
Jammjammjamm authored Apr 7, 2022
1 parent 85ccd83 commit 4cc0aec
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.2.0)
inferno_core (0.3.0.rc1)
activesupport (~> 6.1)
blueprinter (= 0.25.2)
dotenv (~> 2.7)
Expand Down Expand Up @@ -260,7 +260,7 @@ GEM
concurrent-ruby (~> 1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8)
unf_ext (0.0.8.1)
unicode-display_width (2.1.0)
url_mount (0.2.1)
rack
Expand Down
6 changes: 3 additions & 3 deletions inferno_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion lib/inferno/version.rb
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
6 changes: 6 additions & 0 deletions publish.sh
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

0 comments on commit 4cc0aec

Please sign in to comment.