Showing with 40 additions and 29 deletions.
  1. +0 −9 .github/workflows/auto_release.yml
  2. +15 −0 .github/workflows/release_prep.yml
  3. +23 −18 CHANGELOG.md
  4. +1 −1 Gemfile
  5. +1 −1 metadata.json
9 changes: 0 additions & 9 deletions .github/workflows/auto_release.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/release_prep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Release Prep"

on:
workflow_dispatch:
inputs:
version:
description: "Module version to be released. Must be a valid semver string. (1.2.3)"
required: true

jobs:
release_prep:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
with:
version: "${{ github.event.inputs.version }}"
secrets: "inherit"
41 changes: 23 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,52 @@
# Change log
<!-- markdownlint-disable MD024 -->
# Changelog

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
All notable changes to this project will be documented in this file.

## [v4.0.1](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v4.0.1) (2023-04-25)
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v4.0.2](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v4.0.2) - 2023-05-25

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/v4.0.1...v4.0.2)

### Fixed

- pdksync - (CONT-1001) Add litmus ~> 1.0 [#32](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/32) ([Ramesh7](https://github.com/Ramesh7))

## [v4.0.1](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v4.0.1) - 2023-04-25

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/v4.0.0...v4.0.1)

### Fixed

- pdksync - \(MAINT\) - bump puppetlabs-powershell [\#28](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/28) ([jordanbreen28](https://github.com/jordanbreen28))
- pdksync - (MAINT) - bump puppetlabs-powershell [#28](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/28) ([jordanbreen28](https://github.com/jordanbreen28))

## [v4.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v4.0.0) (2023-04-18)
## [v4.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v4.0.0) - 2023-04-18

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/v3.0.0...v4.0.0)

### Changed
- (CONT-788) - Add Puppet 8/Drop Puppet 6 [#25](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/25) ([jordanbreen28](https://github.com/jordanbreen28))

- \(CONT-788\) - Add Puppet 8/Drop Puppet 6 [\#25](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/25) ([jordanbreen28](https://github.com/jordanbreen28))

## [v3.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v3.0.0) (2020-01-23)
## [v3.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/v3.0.0) - 2020-01-23

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/2.0.0...v3.0.0)

### Changed
- (maint) - Update dependency versions [#12](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/12) ([david22swan](https://github.com/david22swan))

- \(maint\) - Update dependency versions [\#12](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/12) ([david22swan](https://github.com/david22swan))

## [2.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/2.0.0) (2018-01-16)
## [2.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/2.0.0) - 2018-01-17

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/1.0.0...2.0.0)

### Fixed

- \(GH-3\) Raise mounting errors as fatal [\#9](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/9) ([glennsarti](https://github.com/glennsarti))
- (GH-3) Raise mounting errors as fatal [#9](https://github.com/puppetlabs/puppetlabs-mount_iso/pull/9) ([glennsarti](https://github.com/glennsarti))

## [1.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/1.0.0) (2017-06-12)
## [1.0.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/1.0.0) - 2017-06-12

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/0.1.0...1.0.0)

## [0.1.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/0.1.0) (2015-09-01)
## [0.1.0](https://github.com/puppetlabs/puppetlabs-mount_iso/tree/0.1.0) - 2015-09-01

[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_iso/compare/7213a727daa5bce87101681f81830940ad4edd87...0.1.0)



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ group :development do
gem "github_changelog_generator", '= 1.15.2', require: false
end
group :system_tests do
gem "puppet_litmus", '< 1.0.0', require: false, platforms: [:ruby, :x64_mingw]
gem "puppet_litmus", '~> 1.0', require: false, platforms: [:ruby, :x64_mingw]
gem "serverspec", '~> 2.41', require: false
end

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-mount_iso",
"version": "4.0.1",
"version": "4.0.2",
"author": "puppetlabs",
"summary": "Mount ISO images and ensure the drive letter they are mounted to",
"license": "Apache-2.0",
Expand Down