Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ jobs:
mkdir -p ~/.gem
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
chmod 0600 ~/.gem/credentials
- name: Publish gem to GitHub packages
run: gem push --key github --host https://rubygems.pkg.github.com/OpenVoxProject *.gem
# bastelfreak - 2025-06-06
# disable for now, authentication to github doesn't work, maybe due to camel case org name??
#- name: Publish gem to GitHub packages
# run: gem push --key github --host https://rubygems.pkg.github.com/OpenVoxProject *.gem
- name: Create Release Page
shell: bash
env:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## [7.37.2](https://github.com/openvoxproject/puppet/tree/7.37.2) (2025-06-06)

[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.37.1...7.37.2)

**Fixed bugs:**

- server\_facts: Switch implementation-\>serverimplementation [\#108](https://github.com/OpenVoxProject/puppet/pull/108) ([bastelfreak](https://github.com/bastelfreak))

**Merged pull requests:**

- rubocop: regenerate todo file & exclude vendor dirs [\#114](https://github.com/OpenVoxProject/puppet/pull/114) ([bastelfreak](https://github.com/bastelfreak))
- GCG: move it to dedicated gem group [\#111](https://github.com/OpenVoxProject/puppet/pull/111) ([bastelfreak](https://github.com/bastelfreak))

## [7.37.1](https://github.com/openvoxproject/puppet/tree/7.37.1) (2025-06-03)

[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.37.0...7.37.1)

## [7.37.0](https://github.com/openvoxproject/puppet/tree/7.37.0) (2025-06-03)

[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.36.1...7.37.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Raketasks and such to set the version based on the output of `git describe`

module Puppet
PUPPETVERSION = '7.37.1'
PUPPETVERSION = '7.37.2'
IMPLEMENTATION = 'openvox'

##
Expand Down
2 changes: 1 addition & 1 deletion puppet.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openvox"
spec.version = "7.37.1"
spec.version = "7.37.2"
spec.license = 'Apache-2.0'

spec.required_rubygems_version = Gem::Requirement.new("> 1.3.1")
Expand Down
Loading