structured_changelog 0.8.2 → 0.8.3
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/release.rb +1 -0
- data/lib/structured_changelog/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 039e8126bbe0d2248dbc9c3b6baeac898c58178e
|
4
|
+
data.tar.gz: f92ca1915c1e0aa2a199d85f83a1be7f4154d0ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e06c3e60b2dc080867b919f59de5e74f85d3dd7af1e6696ed3cc1647aa47581ddf011b2b63c12222ad968a64e6a4097924935f44296d87091193b76564f1cfa8
|
7
|
+
data.tar.gz: bc2cc2b4c9b4c187b1fd203f1c1df68efccec9edd23b92d3a6c1b187cd4512167f2e5bc3f758a23bf703947f15d724132b13447cf7809919bc9f20267f63805d
|
data/CHANGELOG.md
CHANGED
@@ -11,6 +11,10 @@
|
|
11
11
|
* require release block lines to be ordered in descending severity
|
12
12
|
* disable strict semver version validation before 1.0.0
|
13
13
|
|
14
|
+
## RELEASE 0.8.3
|
15
|
+
|
16
|
+
* FIX: `Gemfile.lock` now gets updated with the new version before `changelog:commit` runs during `changelog:release`
|
17
|
+
|
14
18
|
## RELEASE 0.8.2
|
15
19
|
|
16
20
|
* FIX: `rake changelog:commit` now doesn't care if more things change in your Gemfile.lock during release
|
@@ -2,6 +2,7 @@ desc "Validates your Changelog, updates your VERSION constant, commits that, the
|
|
2
2
|
task 'changelog:release', [:repo_path, :changelog_path, :version_path] do |_task, arguments|
|
3
3
|
Rake::Task['changelog:validate'].execute(arguments)
|
4
4
|
Rake::Task['changelog:sync'].execute(arguments)
|
5
|
+
`bundle`
|
5
6
|
Rake::Task['changelog:commit'].execute(arguments)
|
6
7
|
|
7
8
|
# Merely requiring `bundler/gem_tasks` instantiates & caches a gemspec. At this point in this code,
|