Skip to content

Commit

Permalink
Merge pull request #24 from bastelfreak/rel100
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
bastelfreak authored Sep 22, 2023
2 parents 7f35b83 + fe5c027 commit 3fc7c5f
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Changelog

All notable changes to this project will be documented in this file.

## [1.0.0](https://github.com/voxpupuli/beaker-hcloud/tree/1.0.0) (2023-09-22)

[Full Changelog](https://github.com/voxpupuli/beaker-hcloud/compare/205d48a4c1a5dd11add8d7245ad659bb7536a9d9...1.0.0)

**Implemented enhancements:**

- Add Ruby 3.2 support [\#14](https://github.com/voxpupuli/beaker-hcloud/pull/14) ([bastelfreak](https://github.com/bastelfreak))
- Initial implementation of hypervisor \#10 [\#11](https://github.com/voxpupuli/beaker-hcloud/pull/11) ([oneiros](https://github.com/oneiros))

**Closed issues:**

- Hetzner Cloud integration [\#10](https://github.com/voxpupuli/beaker-hcloud/issues/10)

**Merged pull requests:**

- Apply Vox Pupuli CI best practices [\#22](https://github.com/voxpupuli/beaker-hcloud/pull/22) ([bastelfreak](https://github.com/bastelfreak))
- switch to voxpupuli-rubocop [\#21](https://github.com/voxpupuli/beaker-hcloud/pull/21) ([bastelfreak](https://github.com/bastelfreak))
- beaker: Require 5.4 or newer [\#20](https://github.com/voxpupuli/beaker-hcloud/pull/20) ([bastelfreak](https://github.com/bastelfreak))
- dependabot: check for github actions and gems [\#15](https://github.com/voxpupuli/beaker-hcloud/pull/15) ([bastelfreak](https://github.com/bastelfreak))
- GHA: Add Dummy job we can depend on for reviews [\#12](https://github.com/voxpupuli/beaker-hcloud/pull/12) ([bastelfreak](https://github.com/bastelfreak))
- depend on latest beaker [\#9](https://github.com/voxpupuli/beaker-hcloud/pull/9) ([bastelfreak](https://github.com/bastelfreak))
- Add LICENSE/README.md [\#8](https://github.com/voxpupuli/beaker-hcloud/pull/8) ([bastelfreak](https://github.com/bastelfreak))
- implement beaker hypervisor skeleton [\#7](https://github.com/voxpupuli/beaker-hcloud/pull/7) ([bastelfreak](https://github.com/bastelfreak))
- CI: Run spec tests [\#6](https://github.com/voxpupuli/beaker-hcloud/pull/6) ([bastelfreak](https://github.com/bastelfreak))
- Create codeql-analysis.yml [\#5](https://github.com/voxpupuli/beaker-hcloud/pull/5) ([bastelfreak](https://github.com/bastelfreak))
- Add basic unit testing [\#4](https://github.com/voxpupuli/beaker-hcloud/pull/4) ([bastelfreak](https://github.com/bastelfreak))
- CI: Only run on PRs [\#3](https://github.com/voxpupuli/beaker-hcloud/pull/3) ([bastelfreak](https://github.com/bastelfreak))
- do not hardcode version in gemspec [\#2](https://github.com/voxpupuli/beaker-hcloud/pull/2) ([bastelfreak](https://github.com/bastelfreak))
- Add boilerplate code [\#1](https://github.com/voxpupuli/beaker-hcloud/pull/1) ([bastelfreak](https://github.com/bastelfreak))



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ group :coverage, optional: ENV['COVERAGE'] != 'yes' do
gem 'codecov', require: false
gem 'simplecov-console', require: false
end

group :release, optional: true do
gem 'faraday-retry', '~> 2.1', require: false
gem 'github_changelog_generator', '~> 1.16.4', require: false
end
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ begin

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog modulesync]
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog modulesync github_actions]
config.user = 'voxpupuli'
config.project = 'puppet-lint-topscope-variable-check'
config.project = 'beaker-hcloud'
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
end
rescue LoadError # rubocop:disable Lint/SuppressedException
Expand Down

0 comments on commit 3fc7c5f

Please sign in to comment.