Showing with 14 additions and 4 deletions.
  1. +9 −1 CHANGELOG.md
  2. +1 −1 lib/puppet/provider/windows_env/windows_env.rb
  3. +4 −2 metadata.json
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v4.0.0](https://github.com/voxpupuli/puppet-windows_env/tree/v4.0.0) (2020-05-09)
## [v4.0.1](https://github.com/voxpupuli/puppet-windows_env/tree/v4.0.1) (2020-06-22)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v4.0.0...v4.0.1)

**Fixed bugs:**

- Fix: Could not set 'present' on ensure: uninitialized constant Win32::Registry::KEY\_WOW64\_64KEY [\#70](https://github.com/voxpupuli/puppet-windows_env/pull/70) ([cmchoi2000](https://github.com/cmchoi2000))

## [v4.0.0](https://github.com/voxpupuli/puppet-windows_env/tree/v4.0.0) (2020-05-10)

[Full Changelog](https://github.com/voxpupuli/puppet-windows_env/compare/v3.2.0...v4.0.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/windows_env/windows_env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
require 'win32/registry'
module Win32
class Registry
KEY_WOW64_64KEY = 0x0100 unless defined?(KEY_WOW64_64KEY)
KEY_WOW64_64KEY = 0x0100
end
end
end
Expand Down
6 changes: 4 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "puppet-windows_env",
"version": "4.0.0",
"version": "4.0.1",
"author": "Vox Pupuli",
"summary": "Manages Windows environment variables",
"license": "Apache-2.0",
"source": "https://github.com/voxpupuli/puppet-windows_env",
"project_page": "https://github.com/voxpupuli/puppet-windows_env",
"issues_url": "https://github.com/voxpupuli/puppet-windows_env/issues",
"description": "Create, delete, and insert values into Windows environment variables",
"dependencies": [],
"dependencies": [

],
"requirements": [
{
"name": "puppet",
Expand Down