semantic_release 1.2.0 → 1.2.1

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
  SHA256:
3
- metadata.gz: 0a204e59fe728f22a01acf960d9d5d7098499df2bccad1bc49a6c92ea4029d2d
4
- data.tar.gz: 471caaac5e1f4017ce564917554333d2da54aa7860522a700ffe3049e4be3e0d
3
+ metadata.gz: ab408baff3b214c64b1c2ceabc4d2b89cbd36fb6e22d1fd9fcc24eba17e9f67b
4
+ data.tar.gz: 161db6943eb86f2109286e52fc561d1c309a25fcf15af87f2d771d306782c428
5
5
  SHA512:
6
- metadata.gz: 6ac502eeddea51f3947de0cba72763db2d51d44a00eb1edec413d79f4501c67696453220aa1914da165bfc78381c390d2dcc40e1578e2d1219f80b2924a74c52
7
- data.tar.gz: 6cfbffd0d594fdc00377f8010f957d292b57866f53117288be79ea63616c7dc660e9d37afad881a90e735e3abc13569776f40e7a4599709268adbdef95abf506
6
+ metadata.gz: aadd1a32fa94041e9adb258ed2542bb93588c016b53d987425f3e85527e88b300b51eece3cddc72328a210b5868077101ec1b7e38708ccc740fb64580366effc
7
+ data.tar.gz: 5ba80adf3b385336293728b67bbbb7ae5dbf2a927f7c95db3f0499f0a7e24edcf81c0e9894302bcdeb034bf59c4eef3bcf8da81b0c90a03c8f2b3f7ae822d2c0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## 1.2.1 (06 February 2025)
2
+
1
3
  ## 1.2.0 (06 February 2025)
2
4
 
3
5
  - feat: Mention 'rake release' in git tag updater output if a gemspec file is present
data/README.md CHANGED
@@ -73,7 +73,9 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
73
73
 
74
74
  To install this gem onto your local machine, run `bundle exec rake install`.
75
75
 
76
- To release a new version, run `bundle exec rake semver:XXX` (replacing `XXX` with `major` or `minor` or `patch`), which will bump the version number and create a git tag for the version. Then run `bundle exec rake release`, which will push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
76
+ To release a new version, run `bundle exec rake semver:XXX` (replacing `XXX` with `major` or `minor` or `patch`), which will bump the version number and create a git tag for the version. Then run `git push origin main --tags` to push the new tag.
77
+
78
+ Then run `bundle exec rake release`, which will build and push the `.gem` file to [rubygems.org](https://rubygems.org).
77
79
 
78
80
  ## Contributing
79
81
 
@@ -11,7 +11,7 @@ module SemanticRelease
11
11
 
12
12
  branch = `git rev-parse --abbrev-ref HEAD`.chomp
13
13
  puts "To push the new tag, use 'git push origin #{branch} --tags'"
14
- puts "OR to push the tag and .gem file to rubygems.org use, 'bundle exec rake release'" if gemspec_present?
14
+ puts "To push build and push the .gem file to rubygems.org use, 'bundle exec rake release'" if gemspec_present?
15
15
  end
16
16
  end
17
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SemanticRelease
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic_release
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Bull