Skip to content

Commit

Permalink
Bump version to v2.0.0 and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
chr4 committed Oct 29, 2018
1 parent b7badde commit 015ac76
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
sshd CHANGELOG
=====================
==============

This file is used to list changes made in each version of the sshd cookbook.

1.4.0
2.0.0
-----

- Migrate definition to resource (finally!)
- Migrate test suite to `inspec`
- Make everything ready for Chef-13

*NOTE: If you upgrade from version 1.x.x and you were using a wrapper cookbook, make sure you update your configuration accordingly. For more details, have a look at the examples in README.md*:

```ruby
# Old notation
openssh_server '/etc/sshd_config' do
Port 1234
X11Forward 'no'
end

# New notation
openssh_server '/etc/sshd_config' do
sshd_config(
Port: 1234,
X11Forward: 'no'
)
end
```

Detailed CHANGELOG:

- Fixed `rubocop` linting issues
- Fixed travis file
- Removed `minitest` and associated files
Expand All @@ -23,6 +47,7 @@ This file is used to list changes made in each version of the sshd cookbook.
- Removed CentOS 5
- Removed Debian 5 and 6


1.3.1
-----

Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'GPL-3.0-or-later'
description 'Installs/Configures sshd'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.4.0'
version '2.0.0'
source_url 'https://github.com/chr4-cookbooks/sshd' if respond_to?(:source_url)
issues_url 'https://github.com/chr4-cookbooks/sshd/issues' if respond_to?(:issues_url)

Expand Down

0 comments on commit 015ac76

Please sign in to comment.