github_changelog_generator 1.6.1 → 1.6.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: 528989c20b737d6f63c246534e5f533ebb7eb572
4
- data.tar.gz: 5838001403de62e6e8a3f4a7e71d6328a96fa236
3
+ metadata.gz: 40402bd3227eee3064121cd9b5b7552b798bbca9
4
+ data.tar.gz: 48456eb0a3eff8164d3e54b695e5dc5c67360327
5
5
  SHA512:
6
- metadata.gz: feaa6cabe7b38f1d1c54508a0c7ee1bd0433a0b11ce03f59b7ab819f18aafddad9445883bee7dca935ea4fbd5af2734721407f946e34baccdbb5e520db8d6a91
7
- data.tar.gz: 25f5bac35e85e944d6653d9799dbbf2d9d368e15592ca5a526f69dc028686e9a5f21d871a6f9703c1a1c76d3a2a6c4acacc86654eac99fa34fcbc3ae2dcefbff
6
+ metadata.gz: d7669bb35cce144cdb99814cfd3c79130a3bcba6c30db20709b7c16e0adcd110f43f77f83a222de72af5f479307ec752a1e0b32662b8e5ebbe430e8d45b874ba
7
+ data.tar.gz: 680e896ace56e7213a4a755be79251ad20d3132b0868d19f6674f9ccf9c08db9016653cae5299363aa9faf2157ba990780fff0efe2de979c0c07919372dde389
@@ -1,12 +1,24 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.6.1](https://github.com/skywinder/github-changelog-generator/tree/1.6.1) (2015-06-12)
4
+
5
+ [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.6.0...1.6.1)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Ability to specify custom section header [\#241](https://github.com/skywinder/github-changelog-generator/issues/241)
10
+
11
+ **Fixed bugs:**
12
+
13
+ - not encapsulated character `\<` [\#249](https://github.com/skywinder/github-changelog-generator/issues/249)
14
+
3
15
  ## [1.6.0](https://github.com/skywinder/github-changelog-generator/tree/1.6.0) (2015-06-11)
4
16
 
5
17
  [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.5.0...1.6.0)
6
18
 
7
19
  **Implemented enhancements:**
8
20
 
9
- - Issues with any label expect "bug", "enhancement" are excluded by default. [\#240](https://github.com/skywinder/github-changelog-generator/issues/240)
21
+ - Issues with any label except "bug", "enhancement" should not be excluded by default. [\#240](https://github.com/skywinder/github-changelog-generator/issues/240)
10
22
 
11
23
  - Add ability to specify custom labels for enhancements & bugfixes [\#54](https://github.com/skywinder/github-changelog-generator/issues/54)
12
24
 
@@ -28,6 +40,8 @@
28
40
 
29
41
  - Generate change log between 2 specific tags [\#172](https://github.com/skywinder/github-changelog-generator/issues/172)
30
42
 
43
+ - Yanked releases support [\#53](https://github.com/skywinder/github-changelog-generator/issues/53)
44
+
31
45
  **Merged pull requests:**
32
46
 
33
47
  - Big refactoring [\#243](https://github.com/skywinder/github-changelog-generator/pull/243) ([skywinder](https://github.com/skywinder))
data/README.md CHANGED
@@ -88,7 +88,7 @@ More detailed info about params you can find in Wiki page: [**Advanced change lo
88
88
 
89
89
  Since GitHub allows you to make only 50 requests without authentication it's recommended to run this script with a token (`-t, --token` option)
90
90
 
91
- **You can easily [generate it here](https://github.com/settings/tokens)**.
91
+ **You can easily [generate it here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token)**.
92
92
 
93
93
  And:
94
94
 
@@ -11,7 +11,7 @@ module GitHubChangelogGenerator
11
11
  log = "# Change Log\n\n"
12
12
 
13
13
  if @options[:unreleased_only]
14
- log += generate_log_between_tags(all_tags[0], nil)
14
+ log += generate_log_between_tags(filtered_tags[0], nil)
15
15
  else
16
16
  log += generate_log_for_all_tags
17
17
  end
@@ -1,3 +1,3 @@
1
1
  module GitHubChangelogGenerator
2
- VERSION = "1.6.1"
2
+ VERSION = "1.6.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_changelog_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Korolev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-12 00:00:00.000000000 Z
11
+ date: 2015-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github_api