puppetlabs_spec_helper 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b731a22b64d8bfbdd59ff39f43eda181e29802ef
4
- data.tar.gz: 1a7cf2a4677943474c5df7055222dc99cd726c2a
3
+ metadata.gz: b893338e787bafe13cafce81b8513264ef35cd74
4
+ data.tar.gz: 4c1bcdbcf336de9486e52ee9c6ddd1ff41d23157
5
5
  SHA512:
6
- metadata.gz: 26e1e8a4edb8177f53f09a70a4dcab81a02768c43f47cd6ab069033557ebf8e3bf2a497c55ca9fd6fc2f8d157243f013aebed27f4ab19114e1aca9afacd0947b
7
- data.tar.gz: 47ccbe214b1f858632c9a7286f59e2d40f872dd3b8761eebe35d72c3b13714c68c0aad1b5a3975f3e316ee46e7284340ba0bfde0447039ed9b0c6fc1d324dd2d
6
+ metadata.gz: 8744098fa158561caf9b31abce27fcbc5fa85106398dba473276cc52660ef4ecc8750388099cadb0845ac23082509fecf7eecd46cd234a2e6f28bab2960dcc42
7
+ data.tar.gz: 9ce7bad037d78361d29db6df4ac946cd236dfa7d09c19bff47b83c3d79f881e7f5289ed8f2eac0692ce814f3b01674b4f1939fd2ce1f455775bed86a9dbcf9e9
@@ -2,6 +2,13 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [1.0.1] - 2015-11-06
6
+ ### Summary:
7
+ This bugfix release fixes the Error vs. Errno bug in 1.0.0
8
+
9
+ ### Fixed:
10
+ - Raise `Errno::ENOENT` instead of `Error::ENOENT`
11
+
5
12
  ## [1.0.0] - 2015-11-04
6
13
  ### Summary:
7
14
  The first 1.0 release, though the gem has been considered stable for a while.
@@ -208,7 +215,8 @@ compatible yet.
208
215
  ### Added
209
216
  * Initial release
210
217
 
211
- [unreleased]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.0...master
218
+ [unreleased]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.1...master
219
+ [1.0.1]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/1.0.0...1.0.1
212
220
  [1.0.0]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.3...1.0.0
213
221
  [0.10.3]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.2...0.10.3
214
222
  [0.10.2]: https://github.com/puppetlabs/puppetlabs_spec_helper/compare/0.10.1...0.10.2
@@ -38,7 +38,7 @@ def fixtures(category)
38
38
 
39
39
  begin
40
40
  fixtures = YAML.load_file(fixtures_yaml)["fixtures"]
41
- rescue Error::ENOENT
41
+ rescue Errno::ENOENT
42
42
  return {}
43
43
  rescue Psych::SyntaxError => e
44
44
  abort("Found malformed YAML in #{fixtures_yaml} on line #{e.line} column #{e.column}: #{e.problem}")
@@ -1,5 +1,5 @@
1
1
  module PuppetlabsSpecHelper
2
2
  module Version
3
- STRING = '1.0.0'
3
+ STRING = '1.0.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppetlabs_spec_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-04 00:00:00.000000000 Z
11
+ date: 2015-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake