structured_changelog 0.10.0 → 0.10.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: 5cfa0269a454722bb8144fee70626dbd4afddcb5
4
- data.tar.gz: cd69bdcbdf0a54b210868bf7476b2fd92b759665
3
+ metadata.gz: 396406c6fa0d6c318cd8955ce3f57a8cc1445b81
4
+ data.tar.gz: 769f91111b88740ad53fd16629d289c2b4de0378
5
5
  SHA512:
6
- metadata.gz: cb59d3cd247e5618d277e173d067b23037935d8c008ec84c7b907ffb39c1cdabf5e473caffb8bd8b23915dd3414503fcd8de3aed2b1972200a9891d2d0e10958
7
- data.tar.gz: 43512333d80038357eeba472bfa991e33f3f35181474d13def7a716a526d980fd8c501ed3426cdef47c800cd7b86e7320bef427b2c76adc993385dfe450da470
6
+ metadata.gz: d9222a344007479162ef5471d07ad53ff8d2d229fc34e878e319c883d6c2e186e3d8ad5953aa17c0e5d164c635e6fdfcf127d86406db5947db0c65473bb90874
7
+ data.tar.gz: 4c40823c93b709f02e1abc1657e4f59c214ed3fd593389d04cd5e56d6d83e0b574b552afec99c0c9bd0a0b3e62311ff57e34c06f01d798ac30947612e09df296
@@ -5,6 +5,10 @@
5
5
  * require release block lines to be ordered in descending severity
6
6
  * disable strict semver version validation before 1.0.0
7
7
 
8
+ ## RELEASE 0.10.1
9
+
10
+ * FIX: Fixed an issue that resulted in `changelog:compile` pulling in release lines from previous releases
11
+
8
12
  ## RELEASE 0.10.0
9
13
 
10
14
  * FEATURE: `changelog:compile` task that pulls all `[CHANGELOG]` commit messages since the last release, determines the minimum necessary release version, and appends a new section to the top of the releases in the changelog. See the README for more information.
@@ -11,7 +11,7 @@ task "changelog:compile", [:repo_path, :changelog_path] do |_task, arguments|
11
11
 
12
12
  repo = Git.open(repo_path)
13
13
 
14
- commit_messages = repo.log.since("v#{current_version}").map(&:message).select do |message|
14
+ commit_messages = repo.log.between("v#{current_version}").map(&:message).select do |message|
15
15
  message.match?(/^\[CHANGELOG\]\n\n\*\ /)
16
16
  end
17
17
 
@@ -1,3 +1,3 @@
1
1
  class StructuredChangelog
2
- VERSION = "0.10.0"
2
+ VERSION = "0.10.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: structured_changelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hoffman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler