git-chlog 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +13 -4
- data/exe/git-chlog +1 -1
- data/git-chlog.gemspec +2 -2
- data/lib/git/chlog/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ced6c8068bbe3bfa1fd0fcf9411caeab2051a786
|
4
|
+
data.tar.gz: cc753e6f48e3a7effb1de6db584d1d2840a8191c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 918487a3457cd5bfe0f430239b74e79fa51dc2f329936b357c500712ab389b1e945ba59c7c29b6d23e74a79482789ee524275f09442b13f3bdee6467579e722d
|
7
|
+
data.tar.gz: ac382b36440a0fee507a4d8ea86f3d7c7c9e5090a532e29b6a96b669de3baecbaaf0da423b1220d37436d26c7d453b15f92f2585f823f9af3dd9cad1f18560e0
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
# Change Log
|
2
|
+
## [v0.2.1](https://github.com/teohm/git-chlog/tree/v0.2.1)
|
3
|
+
|
4
|
+
[Full Changelog](https://github.com/teohm/git-chlog/compare/v0.2.0...v0.2.1)
|
5
|
+
* 2017-11-03 - Downgrade regexp syntax to be compatible with ruby <2.4 [#7](https://github.com/teohm/git-chlog/pull/7)
|
6
|
+
|
2
7
|
## [v0.2.0](https://github.com/teohm/git-chlog/tree/v0.2.0)
|
3
8
|
|
4
9
|
[Full Changelog](https://github.com/teohm/git-chlog/compare/v0.1.0...v0.2.0)
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
#
|
1
|
+
# git-chlog
|
2
2
|
|
3
|
-
|
3
|
+
A custom git command `git chlog` to print changelog containing a list of merged pull-requests grouped by tags.
|
4
4
|
|
5
|
-
|
5
|
+
[See CHANGELOG example](https://github.com/teohm/git-chlog/blob/master/CHANGELOG.md) generated by `git chlog`.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -22,7 +22,16 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
-
|
25
|
+
```sh
|
26
|
+
git chlog > CHANGELOG.md
|
27
|
+
```
|
28
|
+
|
29
|
+
### Prepare new release
|
30
|
+
To prepare new release, you want to update changelog before creating new git tag. You can specify to-be-released tag name, it'll group new merged pull-requests under this tag name:
|
31
|
+
|
32
|
+
```sh
|
33
|
+
git chlog --prepare-release=v2.29.0 > CHANGELOG.md
|
34
|
+
```
|
26
35
|
|
27
36
|
## Development
|
28
37
|
|
data/exe/git-chlog
CHANGED
data/git-chlog.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Huiming Teo"]
|
10
10
|
spec.email = ["teohuiming@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{Generate changelog for any PR-based Git repository}
|
13
|
+
spec.description = %q{A git custom command `git chlog` to print changelog with a list of merged pull-requests grouped by tags from any git repository.}
|
14
14
|
spec.homepage = "https://github.com/teohm/git-chlog"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
data/lib/git/chlog/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-chlog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Huiming Teo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,8 +52,8 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
56
|
-
|
55
|
+
description: A git custom command `git chlog` to print changelog with a list of merged
|
56
|
+
pull-requests grouped by tags from any git repository.
|
57
57
|
email:
|
58
58
|
- teohuiming@gmail.com
|
59
59
|
executables:
|
@@ -104,5 +104,5 @@ rubyforge_project:
|
|
104
104
|
rubygems_version: 2.6.13
|
105
105
|
signing_key:
|
106
106
|
specification_version: 4
|
107
|
-
summary:
|
107
|
+
summary: Generate changelog for any PR-based Git repository
|
108
108
|
test_files: []
|