automatic_release_gem 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +1 -1
- data/README.md +10 -2
- data/lib/automatic_release_gem/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: ef5f465b84dd4d85273c0c45088218e504cb588b2f5936c57d417127a7699be5
|
4
|
+
data.tar.gz: 9af6df5f9dc4aaaa975c95ef57b8f67b1f41890c83e3e3f728bf5caea01fb6b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52eb63ec6c37669290d385801f6feec54c38f26d1ae17bbf60750cbb436a6fff91d8795da971c208838e0dbf1c0fed23f5c66b939cdcdbd654623f39533a26e2
|
7
|
+
data.tar.gz: e3f5901dd364ede03864b7603a528130e984d48393c11125cf3399b08fc2d73671ce1d8048c7675ff25764c285b4d3e9b75f6111cea776b84edb0525783d6e9d
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
# automatic_release_gem 0.1.4 (Mar 01, 2021)
|
2
|
+
|
3
|
+
* Update README.md
|
4
|
+
|
5
|
+
*Marcelo Toledo*
|
6
|
+
|
7
|
+
## automatic_release_gem 0.1.3 (Mar 01, 2021)
|
8
|
+
|
9
|
+
* Fix publisher plugin
|
10
|
+
|
11
|
+
*Marcelo Toledo*
|
12
|
+
|
13
|
+
## automatic_release_gem 0.1.2 (Mar 01, 2021)
|
14
|
+
|
15
|
+
* Changes to automatic release
|
16
|
+
|
17
|
+
*Marcelo Toledo*
|
18
|
+
|
1
19
|
## automatic_release_gem 0.1.1 (Feb 05, 2021)
|
2
20
|
|
3
21
|
* Fix bundler version
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -26,9 +26,17 @@ TODO: Write usage instructions here
|
|
26
26
|
|
27
27
|
## Development
|
28
28
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
30
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
32
|
+
|
33
|
+
## To Release
|
34
|
+
|
35
|
+
Fill the `CHANGELOG.md` with relevants update.
|
36
|
+
|
37
|
+
To automatic release a new version, update the version number in `lib/automatic_release_gem/version.rb` and merge it to `master` branch.
|
38
|
+
|
39
|
+
To manual release update the version and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
40
|
|
33
41
|
## Contributing
|
34
42
|
|