diff --git a/.travis.yml b/.travis.yml index ac377a6..66c4998 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/CHANGELOG b/CHANGELOG index e243e84..81ad9bd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/lib/puppet-syntax/version.rb b/lib/puppet-syntax/version.rb index d3de70c..1edd9cb 100644 --- a/lib/puppet-syntax/version.rb +++ b/lib/puppet-syntax/version.rb @@ -1,3 +1,3 @@ module PuppetSyntax - VERSION = "2.2.0" + VERSION = "2.3.0" end diff --git a/puppet-syntax.gemspec b/puppet-syntax.gemspec index f84147c..7b147a5 100644 --- a/puppet-syntax.gemspec +++ b/puppet-syntax.gemspec @@ -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($/)