Skip to content

Commit 6bdd9c4

Browse files
authored
Merge pull request #245 from scotje/release_prep_2.5.0
Release prep for v2.5.0
2 parents 0e7242c + 62ccd10 commit 6bdd9c4

File tree

3 files changed

+37
-5
lines changed

3 files changed

+37
-5
lines changed

CHANGELOG.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,31 @@
33
All significant changes to this repo will be summarized in this file.
44

55

6-
## [v2.4.0](https://github.com/puppetlabs/puppet-strings/tree/v2.4.0) (2020-02-18)
6+
## [v2.5.0](https://github.com/puppetlabs/puppet-strings/tree/v2.5.0) (2020-07-15)
7+
8+
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.4.0...v2.5.0)
9+
10+
Added
11+
12+
- \(GH-225\) Document functions in Puppet Datatypes [\#235](https://github.com/puppetlabs/puppet-strings/pull/235) ([glennsarti](https://github.com/glennsarti))
13+
- Add checks to resource\_type handler and code objects [\#232](https://github.com/puppetlabs/puppet-strings/pull/232) ([scotje](https://github.com/scotje))
14+
- \(\#227\) Inject `provider` into params list for types with providers [\#231](https://github.com/puppetlabs/puppet-strings/pull/231) ([scotje](https://github.com/scotje))
15+
16+
Fixed
17+
18+
- \(\#242\) Wrap names in backticks when rendering to markdown [\#243](https://github.com/puppetlabs/puppet-strings/pull/243) ([scotje](https://github.com/scotje))
19+
- Eliminate trailing spaces w/o descriptions [\#224](https://github.com/puppetlabs/puppet-strings/pull/224) ([binford2k](https://github.com/binford2k))
20+
21+
**Closed issues:**
22+
23+
- text rendering as emojis in strings generated docs [\#242](https://github.com/puppetlabs/puppet-strings/issues/242)
24+
- Puppet Classes not Listed in Left Frame Contents [\#241](https://github.com/puppetlabs/puppet-strings/issues/241)
25+
- exec type in generated docs missing attributes `creates`, `onlyif` [\#229](https://github.com/puppetlabs/puppet-strings/issues/229)
26+
- \[Feature\] Document functions in Puppet Datatypes [\#225](https://github.com/puppetlabs/puppet-strings/issues/225)
27+
- Document usage [\#8](https://github.com/puppetlabs/puppet-strings/issues/8)
28+
- Need a search box on the main page [\#1](https://github.com/puppetlabs/puppet-strings/issues/1)
29+
30+
## [v2.4.0](https://github.com/puppetlabs/puppet-strings/tree/v2.4.0) (2020-02-20)
731

832
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.3.1...v2.4.0)
933

@@ -13,6 +37,10 @@ Added
1337
- \(PDOC-295\) Add @enum tag support for Enum data types [\#215](https://github.com/puppetlabs/puppet-strings/pull/215) ([seanmil](https://github.com/seanmil))
1438
- Expanded default search glob for plans. [\#214](https://github.com/puppetlabs/puppet-strings/pull/214) ([Raskil](https://github.com/Raskil))
1539

40+
**Merged pull requests:**
41+
42+
- \(MAINT\) Release prep for 2.4.0 [\#221](https://github.com/puppetlabs/puppet-strings/pull/221) ([scotje](https://github.com/scotje))
43+
1644
## [v2.3.1](https://github.com/puppetlabs/puppet-strings/tree/v2.3.1) (2019-09-23)
1745

1846
[Full Changelog](https://github.com/puppetlabs/puppet-strings/compare/v2.3.0...v2.3.1)
@@ -282,4 +310,4 @@ All related tickets can be found under the [PDOC][PDOC JIRA] JIRA project with t
282310
- Strings will no longer crash when documenting 3x functions with less than two arguments passed into newfunction **(PDOC-27)**
283311

284312

285-
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
313+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

lib/puppet-strings/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module PuppetStrings
2-
VERSION = '2.4.0'.freeze
2+
VERSION = '2.5.0'.freeze
33
end

spec/spec_helper.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
if ENV['COVERAGE'] == 'yes'
22
require 'simplecov'
33
require 'simplecov-console'
4-
require 'codecov'
54

65
SimpleCov.formatters = [
76
SimpleCov::Formatter::HTMLFormatter,
87
SimpleCov::Formatter::Console,
9-
SimpleCov::Formatter::Codecov,
108
]
9+
10+
unless Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('2.3.0')
11+
require 'codecov'
12+
SimpleCov.formatters << SimpleCov::Formatter::Codecov
13+
end
14+
1115
SimpleCov.start do
1216
track_files 'lib/**/*.rb'
1317

0 commit comments

Comments
 (0)