From f327e5d5eefd24b2127c0c812c60c2b0a6b7d791 Mon Sep 17 00:00:00 2001 From: Jake Spain Date: Tue, 21 Mar 2023 08:27:51 -0400 Subject: [PATCH] 1.8.0 release prep --- CHANGELOG.md | 12 ++++++++++-- Gemfile.lock | 2 +- README.md | 4 ++-- lib/vmfloaty/version.rb | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa063ee..51d6c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ # Changelog -## [Unreleased](https://github.com/puppetlabs/vmfloaty/tree/HEAD) +## [1.8.0](https://github.com/puppetlabs/vmfloaty/tree/1.8.0) (2023-03-21) -[Full Changelog](https://github.com/puppetlabs/vmfloaty/compare/1.7.0...HEAD) +[Full Changelog](https://github.com/puppetlabs/vmfloaty/compare/1.7.0...1.8.0) + +**Implemented enhancements:** + +- Docker, Actions, and Docs Updates [\#170](https://github.com/puppetlabs/vmfloaty/pull/170) ([yachub](https://github.com/yachub)) + +**Fixed bugs:** + +- Fix `floaty list --active` for vmpooler api v2 [\#169](https://github.com/puppetlabs/vmfloaty/pull/169) ([yachub](https://github.com/yachub)) **Merged pull requests:** diff --git a/Gemfile.lock b/Gemfile.lock index 45dfa5b..b68d4e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vmfloaty (1.7.0) + vmfloaty (1.8.0) commander (>= 4.4.3, < 4.7.0) faraday (~> 1.5, >= 1.5.1) diff --git a/README.md b/README.md index 2aa2d31..dfc22f9 100644 --- a/README.md +++ b/README.md @@ -190,8 +190,8 @@ Please wait for multiple code owners to sign off on any notable change. Follow these steps to publish a new GitHub release, build and push the gem to , and build and push a Docker Image to GitHub Container Registry: -1. Bump the "VERSION" in `lib/vmpooler/version.rb` appropriately based on changes in `CHANGELOG.md` since the last release. -2. Run `./release-prep` to update `Gemfile.lock` if necessary and `CHANGELOG.md`. +1. Bump the "VERSION" in `lib/vmfloaty/version.rb` appropriately based on changes in `CHANGELOG.md` since the last release. +2. Run `./release-prep` to update `Gemfile.lock` and `CHANGELOG.md`. 3. Commit and push changes to a new branch, then open a pull request against `main` and be sure to add the "maintenance" label. 4. After the pull request is approved and merged, then navigate to --> Run workflow --> select "main" branch --> Run workflow. This will publish a GitHub release, build and push the gem to RubyGems, and build and push a Docker Image to GitHub Container Registry. diff --git a/lib/vmfloaty/version.rb b/lib/vmfloaty/version.rb index 28c2a9f..941f623 100644 --- a/lib/vmfloaty/version.rb +++ b/lib/vmfloaty/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Vmfloaty - VERSION = '1.7.0' + VERSION = '1.8.0' end