From 7e240842e77053d34336259512e1761f4ec4a8fd Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Fri, 24 Feb 2023 14:08:07 -0500 Subject: [PATCH] update publish action and bump version (#15) --- .github/workflows/publish.yml | 2 +- CHANGELOG.md | 8 +++++++- lib/ood_support/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 84853ca..68f8528 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,7 +22,7 @@ jobs: with: ruby-version: "2.7.1" bundler-cache: true - bundler: "2.1.4" + bundler: "2.2" - name: install gems run: bundle install diff --git a/CHANGELOG.md b/CHANGELOG.md index a53dfca..65fbf59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.0.5] - 2023-02-24 + +- No functional difference with 0.0.4. This is only updates to the automation. + ## [0.0.4] - 2023-02-24 ### Fixed @@ -30,6 +34,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - Initial release! -[Unreleased]: https://github.com/OSC/ood_support/compare/v0.0.3...HEAD +[Unreleased]: https://github.com/OSC/ood_support/compare/v0.0.5...HEAD +[0.0.5]: https://github.com/OSC/ood_support/compare/v0.0.4...v0.0.5 +[0.0.4]: https://github.com/OSC/ood_support/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/OSC/ood_support/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/OSC/ood_support/compare/v0.0.1...v0.0.2 diff --git a/lib/ood_support/version.rb b/lib/ood_support/version.rb index 40f2bb0..18f46d8 100644 --- a/lib/ood_support/version.rb +++ b/lib/ood_support/version.rb @@ -1,4 +1,4 @@ module OodSupport # The current version of {OodSupport} - VERSION = "0.0.4" + VERSION = "0.0.5" end