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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b4478e6906014c3ff3ebf4f1735b9baa008881c670aa84afdc24eb5dd74b063
4
- data.tar.gz: 0dc863efcb5ee1595f19516f38e79474dbadb4837688ecfe1f9178de57c8e10e
3
+ metadata.gz: ef5f465b84dd4d85273c0c45088218e504cb588b2f5936c57d417127a7699be5
4
+ data.tar.gz: 9af6df5f9dc4aaaa975c95ef57b8f67b1f41890c83e3e3f728bf5caea01fb6b4
5
5
  SHA512:
6
- metadata.gz: 95c636844139b8bb100e69c27c29ec020364635a56abbcddfad53a55e515030d96a0944f5dc90e91d4f75293080571d74e138e3b3c4a7d731b6afbccc5af4cb5
7
- data.tar.gz: 3349394a8df8ce6a00eeec6c3800bdfa3c25a2ccbd1b85b73aef63c03bf05a54d8c15eb863416745d5889fe98a6e87080b5ffabfeee6e56cc3eb4faa32e82a3a
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- automatic_release_gem (0.1.3)
4
+ automatic_release_gem (0.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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 `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutomaticReleaseGem
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: automatic_release_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcelo Toledo