github_changelog_generator 1.16.2 → 1.16.3
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 +4 -4
- data/README.md +4 -4
- data/lib/github_changelog_generator/argv_parser.rb +1 -0
- data/lib/github_changelog_generator/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c1d6d65e8dbae7462cb4af0ef5dcef7ccd69fa0d77cb4d36b2e1e340f955e0e
|
|
4
|
+
data.tar.gz: 44f3e31077975a41154b8843253eb2dd56a1f37e6b8536fde56e825496568b7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dfcc5e4330a6bf05c098e0d5187259cb0993d7eb3d7c680a0bd12d70fa0ee5f00a2a334866460f5d011b19f6e4086109b8670590b8223885297fb0711beb102
|
|
7
|
+
data.tar.gz: c77fd119b4bd3d854f9873bd726076460253eecc66bfc20d35f127053f5a8c448568c4bdec9b69f0e80992b7b2eb9032483dc4ccf8b4e428fad3bb1aaadcaa69
|
data/README.md
CHANGED
|
@@ -39,7 +39,7 @@ To update TOC, please run:
|
|
|
39
39
|
|
|
40
40
|
### Changelog generation has never been so easy
|
|
41
41
|
|
|
42
|
-
**Fully automated changelog generation** - This gem generates a changelog file based on **tags**, **issues** and merged **pull requests** (and splits them into separate lists according to labels) from :octocat: GitHub
|
|
42
|
+
**Fully automated changelog generation** - This gem generates a changelog file based on **tags**, **issues** and merged **pull requests** (and splits them into separate lists according to labels) from :octocat: GitHub.
|
|
43
43
|
|
|
44
44
|
Since you don't have to fill your `CHANGELOG.md` manually now: just run the script, relax and take a cup of :coffee: before your next release! :tada:
|
|
45
45
|
|
|
@@ -88,7 +88,7 @@ Example invocation:
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
- For
|
|
91
|
+
- For GitHub Enterprise repos, specify *both* `--github-site` and `--github-api` options:
|
|
92
92
|
|
|
93
93
|
$ github_changelog_generator --github-site="https://github.yoursite.com" \
|
|
94
94
|
--github-api="https://github.yoursite.com/api/v3/"
|
|
@@ -320,7 +320,7 @@ Workaround: Create a `C:\tmp`.
|
|
|
320
320
|
|
|
321
321
|
## Contributing
|
|
322
322
|
|
|
323
|
-
|
|
323
|
+
Would you like to contribute to this project? [CONTRIBUTING.md] has all the details on how to do that.
|
|
324
324
|
|
|
325
325
|
[CONTRIBUTING.md]: CONTRIBUTING.md
|
|
326
326
|
|
|
@@ -329,4 +329,4 @@ We have collected notes on how to contribute to this project in [CONTRIBUTING.md
|
|
|
329
329
|
|
|
330
330
|
## License
|
|
331
331
|
|
|
332
|
-
|
|
332
|
+
GitHub Changelog Generator is released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
|
@@ -73,6 +73,7 @@ module GitHubChangelogGenerator
|
|
|
73
73
|
options[:add_sections] = v
|
|
74
74
|
end
|
|
75
75
|
opts.on("--front-matter JSON", "Add YAML front matter. Formatted as JSON because it's easier to add on the command line.") do |v|
|
|
76
|
+
require "yaml"
|
|
76
77
|
options[:frontmatter] = "#{JSON.parse(v).to_yaml}---\n"
|
|
77
78
|
end
|
|
78
79
|
opts.on("--pr-label LABEL", "Set up custom label for pull requests section. Default is \"**Merged pull requests:**\".") do |v|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github_changelog_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petr Korolev
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-
|
|
13
|
+
date: 2021-05-14 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -140,7 +140,7 @@ dependencies:
|
|
|
140
140
|
version: '3.0'
|
|
141
141
|
description: Changelog generation has never been so easy. Fully automate changelog
|
|
142
142
|
generation - this gem generate changelog file based on tags, issues and merged pull
|
|
143
|
-
requests from
|
|
143
|
+
requests from GitHub.
|
|
144
144
|
email: sky4winder+github_changelog_generator@gmail.com
|
|
145
145
|
executables:
|
|
146
146
|
- git-generate-changelog
|
|
@@ -234,7 +234,7 @@ requirements: []
|
|
|
234
234
|
rubygems_version: 3.2.7
|
|
235
235
|
signing_key:
|
|
236
236
|
specification_version: 4
|
|
237
|
-
summary: Script
|
|
237
|
+
summary: Script that automatically generates a changelog from your tags, issues, labels
|
|
238
238
|
and pull requests.
|
|
239
239
|
test_files:
|
|
240
240
|
- spec/files/angular.js.md
|