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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8eefb22f02379b1f42842cd98cf1704c25cc0aa8
4
- data.tar.gz: 9e064f42176c4216a3188a84646c16a6a7e60633
3
+ metadata.gz: 039e8126bbe0d2248dbc9c3b6baeac898c58178e
4
+ data.tar.gz: f92ca1915c1e0aa2a199d85f83a1be7f4154d0ce
5
5
  SHA512:
6
- metadata.gz: 7f0ffee80071e30dc4a32679750906d64998efd0ea62b59e77b58886b819346c69b893d258bd8922168db397e3bf0f07e5bebd9e7d164832fc78f2d3d90b8482
7
- data.tar.gz: a1fd3bc320574ba7e03e9425a27bca937d990f4dc0fadb2a88911c7867f5f0f6738126c4f41b4dac191fee2a71ac2dd19872fb658f732ecd43d4b2e920b5118f
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,
@@ -1,3 +1,3 @@
1
1
  class StructuredChangelog
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: structured_changelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hoffman