maintainers 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b180ab1f1bf4d3b38fbe24e230f23c5463880a73
4
- data.tar.gz: 30df1da1ffe8477687ad3764f668885361126540
3
+ metadata.gz: 0535e1ebfc8c9c19f2bf70f2f80bc031d1dcb61c
4
+ data.tar.gz: 8bbf4f7bd35d97e38c90b9ccf0d9ab7ec5582257
5
5
  SHA512:
6
- metadata.gz: 666a0d00c79c5e08358244b53f855b0a14c3dfcba0c8d21d3e5345a7167f026426682583fb4949a460e0a26a4345e2d340f59a891dbae70737b4002117fc57d3
7
- data.tar.gz: 8756b96d1523bc1c8d4b61979d998f9c981fe42a8006737892d1beba393f1060993aed83d85478a61e06c982ade7e4a5abda349a92aa47ff8d42509a34227c15
6
+ metadata.gz: dbf8f930d4116bd024946fa80619c5ba8e1f40080a83235977dc976c85b0fe2476a8a3d5f0d7da360f41f1f412f8edaed1995de55cc4a7d940ed6aee87df6e41
7
+ data.tar.gz: 79abacac15067a96e0f2596b76fbc41f0f423f2fcbe13ad4e5ae7d787fa8eb433d3400d2870a55f5ce234506691a9f6bc8f09b14a2e2ec2df570e4f4898da502
data/CHANGELOG CHANGED
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.2] - 2016-09-10
10
+ ### Fixed
11
+ - Add a trailing newline when creating/modifying a MAINTAINERS file
12
+ - Allow `bin/maintainers` to work in a development environment
13
+
9
14
  ## [0.2.1] - 2016-09-08
10
15
  ### Fixed
11
16
  - Make 'report' subcommand more useful
@@ -32,8 +37,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
32
37
  ### Added
33
38
  - Initial support for a json format for MAINTAINERS
34
39
 
35
- [Unreleased]: https://github.com/puppetlabs/maintainers/compare/0.2.1...HEAD
36
- [0.2.1]: https://github.com/puppetlabs/maintainers/compare/0.2.0...0.2.1
40
+ [Unreleased]: https://github.com/puppetlabs/maintainers/compare/v0.2.2...HEAD
41
+ [0.2.2]: https://github.com/puppetlabs/maintainers/compare/v0.2.1...v0.2.2
42
+ [0.2.1]: https://github.com/puppetlabs/maintainers/compare/0.2.0...v0.2.1
37
43
  [0.2.0]: https://github.com/puppetlabs/maintainers/compare/0.1.2...0.2.0
38
44
  [0.1.2]: https://github.com/puppetlabs/maintainers/compare/0.1.1...0.1.2
39
45
  [0.1.1]: https://github.com/puppetlabs/maintainers/compare/0.1.0...0.1.1
@@ -10,3 +10,4 @@
10
10
  }
11
11
  ]
12
12
  }
13
+
@@ -22,3 +22,4 @@
22
22
  }
23
23
  ]
24
24
  }
25
+
@@ -5,3 +5,4 @@
5
5
  "issues": "This repo is not maintained",
6
6
  "people": []
7
7
  }
8
+
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ require 'bundler/setup'
3
4
  require 'maintainers'
4
5
 
5
6
  cli = Maintainers::CLI.new
@@ -62,7 +62,7 @@ module Maintainers
62
62
  exit 1
63
63
  end
64
64
 
65
- File.open(filename, 'w') { |f| f.write(maintainers_json) }
65
+ File.open(filename, 'w') { |f| f.puts(maintainers_json) }
66
66
  end
67
67
 
68
68
  def create(options)
@@ -1,3 +1,3 @@
1
1
  module Maintainers
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maintainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-09 00:00:00.000000000 Z
11
+ date: 2016-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler