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 +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +3 -1
- data/lib/semantic_release/updaters/git_tag.rb +1 -1
- data/lib/semantic_release/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab408baff3b214c64b1c2ceabc4d2b89cbd36fb6e22d1fd9fcc24eba17e9f67b
|
4
|
+
data.tar.gz: 161db6943eb86f2109286e52fc561d1c309a25fcf15af87f2d771d306782c428
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aadd1a32fa94041e9adb258ed2542bb93588c016b53d987425f3e85527e88b300b51eece3cddc72328a210b5868077101ec1b7e38708ccc740fb64580366effc
|
7
|
+
data.tar.gz: 5ba80adf3b385336293728b67bbbb7ae5dbf2a927f7c95db3f0499f0a7e24edcf81c0e9894302bcdeb034bf59c4eef3bcf8da81b0c90a03c8f2b3f7ae822d2c0
|
data/CHANGELOG.md
CHANGED
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 `
|
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 "
|
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
|