ruby_git 0.1.2 → 0.1.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
  SHA256:
3
- metadata.gz: 88ac1dcb3abb6fc749755848f777ebd367e76ef9ae737ef4f778890afd8ff096
4
- data.tar.gz: ba110f2ac31a96989e6e486a2377f76b080ea03533d304448848bf351ef96988
3
+ metadata.gz: 32a1bc5ee8f2d70f5a30eb7fda1c65f0072b59d1a3ad5e46713ba51d1de141fb
4
+ data.tar.gz: 6456bd376f470100e27d273066a3a3376e9e3565b85d2cd83cc9ebd1aabe88e7
5
5
  SHA512:
6
- metadata.gz: f4f1d53fd8cc7c4939e7ccf797e39702a6541159c06673fc5ec8e723629008020d8a0371f0365b0c255bc9eb0af83ed8d6b6dc9dd7f52d3f53d1286c2253be59
7
- data.tar.gz: 6a11a5211e5554fec26034351e1a7c531ce25d87e9b9c3d3ab53aac3b9569ed997135dfb879c1e3d3a3a80653811ee64082ed4e18baa8a1b300f58ea0d7d1e97
6
+ metadata.gz: db1a608c224aa0ad445bc63ab48872465ea3bbd8310d9e4cda2b9f1bceeb5e2c8597272144c90792d42ce4737f20d4a640659ee7d55e3ef983c2746cf5f05141
7
+ data.tar.gz: 39ce71a07fc6690de087e695be7e10723d80f033d3c3b6d2b8a0a4c11b280b78c85a50c435bdbb209d2c5eb5f2e1e9a2eb57632e1ffc431ada792b691e37f560
@@ -1,8 +1,24 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.1.3](https://github.com/jcouball/ruby_git/releases/tag/v0.1.3) (2020-09-24)
4
+
5
+ [Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.2...v0.1.3)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add Gem badge and correct home page URL [\#10](https://github.com/jcouball/ruby_git/pull/10) ([jcouball](https://github.com/jcouball))
10
+
3
11
  ## [v0.1.2](https://github.com/jcouball/ruby_git/releases/tag/v0.1.2) (2020-09-24)
4
12
 
5
- [Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.1...v0.1.2)
13
+ [Full Changelog](https://github.com/jcouball/ruby_git/compare/0.1.2...v0.1.2)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Release v0.1.2 [\#9](https://github.com/jcouball/ruby_git/pull/9) ([jcouball](https://github.com/jcouball))
18
+
19
+ ## [0.1.2](https://github.com/jcouball/ruby_git/releases/tag/0.1.2) (2020-09-24)
20
+
21
+ [Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.1...0.1.2)
6
22
 
7
23
  **Merged pull requests:**
8
24
 
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  **THIS PROJECT IS A WORK IN PROGRESS AND IS NOT USEFUL IN ITS CURRENT STATE**
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/ruby_git.svg)](https://badge.fury.io/rb/ruby_git)
5
6
  [![Build Status](https://travis-ci.org/jcouball/ruby_git.svg?branch=main)](https://travis-ci.org/jcouball/ruby_git)
6
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/2d8d52a55d655b6a3def/maintainability)](https://codeclimate.com/github/jcouball/ruby_git/maintainability)
7
8
 
@@ -27,7 +27,7 @@ version number and (2) update the CHANGELOG.md, and (3) tag the release.
27
27
  * `git add lib/ruby_git/version.rb CHANGELOG.md`
28
28
 
29
29
  * Commit, tag, and push changes to the repository
30
- * ```git release `ruby -I lib -r ruby_git -e 'puts RubyGit::VERSION'` ```
30
+ * ```git release v`ruby -I lib -r ruby_git -e 'puts RubyGit::VERSION'` ```
31
31
 
32
32
  * Create a PR with these changes, have it reviewed and approved, and merged to main.
33
33
 
@@ -3,5 +3,5 @@
3
3
  module RubyGit
4
4
  # The ruby_git gem version
5
5
  #
6
- VERSION = '0.1.2'
6
+ VERSION = '0.1.3'
7
7
  end
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  An object-oriented interface to working with Git Worktrees and Repositories that
17
17
  tries to make sense out of the Git command line.
18
18
  DESCRIPTION
19
- spec.homepage = 'https://github.com/pages/jcouball/ruby_git/'
19
+ spec.homepage = 'https://github.com/jcouball/ruby_git/'
20
20
  spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
21
21
  spec.requirements = [
22
22
  'Git 2.18.0 or later',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -184,12 +184,12 @@ files:
184
184
  - lib/ruby_git/version.rb
185
185
  - pre-commit
186
186
  - ruby_git.gemspec
187
- homepage: https://github.com/pages/jcouball/ruby_git/
187
+ homepage: https://github.com/jcouball/ruby_git/
188
188
  licenses:
189
189
  - MIT
190
190
  metadata:
191
191
  allowed_push_host: https://rubygems.org
192
- homepage_uri: https://github.com/pages/jcouball/ruby_git/
192
+ homepage_uri: https://github.com/jcouball/ruby_git/
193
193
  source_code_uri: https://github.com/jcouball/ruby_git/
194
194
  changelog_uri: https://github.com/jcouball/ruby_git/blob/main/CHANGELOG.md
195
195
  post_install_message: