Skip to content

Commit 75a1c7e

Browse files
committed
changed version number to branch specific micro version, added some doc
1 parent a76d2e0 commit 75a1c7e

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Library for using Git in Ruby.
44

5+
## Branch: multiple_merges
6+
This is a branch which merges multiple enhancements on top of the latest schacon/ruby-git-master.
7+
8+
### Install multi_merges version
9+
```ruby
10+
git clone https://github.com/saheba/ruby-git.git
11+
cd ruby-git
12+
git checkout multi_merges
13+
gem build git.gemspec
14+
gem install ./git-1-2.6.2.gem
15+
```
16+
517
## Homepage
618

719
Git public hosting of the project source code is at:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.6
1+
1.2.6.2

git.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ require 'date'
33
require "#{File.expand_path(File.dirname(__FILE__))}/lib/git/version"
44

55
Gem::Specification.new do |s|
6-
s.authors = ['Scott Chacon']
6+
s.authors = ['Scott Chacon, SaHeBa']
77
s.date = Date.today.to_s
8-
s.email = 'schacon@gmail.com'
9-
s.homepage = 'http://github.com/schacon/ruby-git'
8+
s.email = 'schacon@gmail.com, mail-@-saheba-dot-net'
9+
s.homepage = 'http://github.com/saheba/ruby-git'
1010
s.license = 'MIT'
1111
s.name = 'git'
1212
s.summary = 'Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.'
13-
s.version = Git::VERSION
13+
s.version = Git::VERSION
1414

1515
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1616
s.require_paths = ['lib']

lib/git/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module Git
22

33
# The current gem version
44
# @return [String] the current gem version.
5-
VERSION='1.2.6.1'
5+
VERSION='1.2.6.2'
66

77
end

0 commit comments

Comments
 (0)