Skip to content

Commit 102acf5

Browse files
committed
(MODULES-7711) - Release Prep for 6.0.0
1 parent 6574d46 commit 102acf5

File tree

5 files changed

+715
-3
lines changed

5 files changed

+715
-3
lines changed

.sync.yml

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ Gemfile:
1919
- mswin
2020
- mingw
2121
- x64_mingw
22+
optional:
23+
':development':
24+
- gem: 'github_changelog_generator'
25+
git: 'https://github.com/skywinder/github-changelog-generator'
26+
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
27+
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
2228

2329
appveyor.yml:
2430
delete: true

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22

33
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).
44

5-
## [5.0.1](https://github.com/puppetlabs/puppetlabs-apt/tree/5.0.1) (2018-07-27)
5+
## [6.0.0](https://github.com/puppetlabs/puppetlabs-apt/tree/6.0.0) (2018-08-24)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/5.0.1...6.0.0)
8+
9+
### Changed
10+
11+
- \(MODULES-7668\) Remove support for Puppet 4.7 [\#780](https://github.com/puppetlabs/puppetlabs-apt/pull/780) ([jarretlavallee](https://github.com/jarretlavallee))
12+
13+
### Added
14+
15+
- Check existence of gpg key in apt:ppa [\#774](https://github.com/puppetlabs/puppetlabs-apt/pull/774) ([wenzhengjiang](https://github.com/wenzhengjiang))
16+
- Make sure PPA source file is absent when apt-add-repository fails [\#768](https://github.com/puppetlabs/puppetlabs-apt/pull/768) ([wenzhengjiang](https://github.com/wenzhengjiang))
17+
18+
## 5.0.1
619

720
[Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/5.0.0...5.0.1)
821

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ group :development do
3333
gem "puppet-module-posix-dev-r#{minor_version}", require: false, platforms: [:ruby]
3434
gem "puppet-module-win-default-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
3535
gem "puppet-module-win-dev-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
36+
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
3637
end
3738
group :system_tests do
3839
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]

0 commit comments

Comments
 (0)