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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/structured_changelog/tasks/compile.rb +1 -1
- data/lib/structured_changelog/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 396406c6fa0d6c318cd8955ce3f57a8cc1445b81
|
4
|
+
data.tar.gz: 769f91111b88740ad53fd16629d289c2b4de0378
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9222a344007479162ef5471d07ad53ff8d2d229fc34e878e319c883d6c2e186e3d8ad5953aa17c0e5d164c635e6fdfcf127d86406db5947db0c65473bb90874
|
7
|
+
data.tar.gz: 4c40823c93b709f02e1abc1657e4f59c214ed3fd593389d04cd5e56d6d83e0b574b552afec99c0c9bd0a0b3e62311ff57e34c06f01d798ac30947612e09df296
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
|
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.
|
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
|
11
|
+
date: 2018-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|