Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 2.3.0 release #70

Merged
merged 3 commits into from
Feb 1, 2017
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
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,15 @@ matrix:
rvm: 2.4.0
allow_failures:
- env: PUPPET_VERSION=">= 0"

deploy:
provider: rubygems
api_key:
secure: "kwxryZZ/t9EkWuYxhz3G1v+U3ZK4WdsiN0UFHDjijnAGPxqe/n+oBcNA8hOiNhjZeTFo8bADEZkL7JtdKQo9RvgStipyaS5gDHB/C1c4LOBWv4Tga21NNCAuBcE2CDtAH3+TzrZV5vv2+SpOrhKZpzZoAoR6PR1MWVWMUie/rE0="
gem: puppet-syntax
on:
rvm: 2.4.0
condition: '"$PUPPET_VERSION" = "~> 4.8.0"'
tags: true
all_branches: true
repo: voxpupuli/puppet-syntax
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2017-01-30 Release 2.3.0
- Add app_management flag for Puppet application orchestration support. Thanks @ipcrm.
- Check all *yaml file extensions, including eyaml. thanks @kjetilho, @rjw1.
- Only test ERB syntax in files with an *.erb extension. Thanks @alexiri.
- Extend README to list specific files and checks implemented. Thanks @petems.
- Refactor Rake filelist generation, add tests. Thanks @kjetilho, @rjw1.

2016-12-02 Release 2.2.0
- Replace Puppet.initialize_settings with Puppet::Test::TestHelper. Thanks @domcleal #60
This clears out caches on every test so increases runtime.
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet-syntax/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PuppetSyntax
VERSION = "2.2.0"
VERSION = "2.3.0"
end
6 changes: 3 additions & 3 deletions puppet-syntax.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ require 'puppet-syntax/version'
Gem::Specification.new do |spec|
spec.name = "puppet-syntax"
spec.version = PuppetSyntax::VERSION
spec.authors = ["Dan Carley"]
spec.email = ["dan.carley@gmail.com"]
spec.authors = ["Vox Pupuli"]
spec.email = ["voxpupuli@groups.io"]
spec.description = %q{Syntax checks for Puppet manifests and templates}
spec.summary = %q{Syntax checks for Puppet manifests, templates, and Hiera YAML}
spec.homepage = "https://github.com/gds-operations/puppet-syntax"
spec.homepage = "https://github.com/voxpupuli/puppet-syntax"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
Expand Down