Skip to content

Commit 64a2bdd

Browse files
Bump version - 1.2.10
1 parent bddcc9f commit 64a2bdd

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

CHANGELOG

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
== 1.2.10
2+
3+
* Adding Git::Diff.name_status
4+
* Checking and fixing encoding on commands output to prevent encoding errors afterwards
5+
16
== 1.2.9
27

38
* Adding Git.configure (to configure the git env)
@@ -14,17 +19,17 @@
1419
* Improving Git::Object::Tag. Adding annotated?, tagger and message
1520
* Supporting a submodule path as a valid repo
1621
* Git.checkout - supporting -f and -b
17-
* Git.clone - supporting --branch
22+
* Git.clone - supporting --branch
1823
* Git.fetch - supporting --prune
19-
* Git.tag - supporting
24+
* Git.tag - supporting
2025

2126
== 1.2.8
2227

2328
* Keeping the old escape format for windows users
2429
* revparse: Supporting ref names containing SHA like substrings (40-hex strings)
2530
* Fix warnings on Ruby 2.1.2
2631

27-
== 1.2.7
32+
== 1.2.7
2833

2934
* Fixing mesages encoding
3035
* Fixing -f flag in git push
@@ -47,9 +52,9 @@
4752
* Git.add - supporting --fore
4853
* Git.init - supporting --bare
4954
* Git.commit - supporting --all and --amend
50-
* Added Git.remote_remote, Git.revert and Git.clean
55+
* Added Git.remote_remote, Git.revert and Git.clean
5156
* Added Bundler to the formula
52-
* Travis configuration
57+
* Travis configuration
5358
* Licence included with the gem
5459

5560
== 1.0.4

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Here are the operations that need read permission only.
133133

134134
g.diff(commit1, commit2).size
135135
g.diff(commit1, commit2).stats
136+
g.diff(commit1, commit2).name_status
136137
g.gtree('v2.5').diff('v2.6').insertions
137138
g.diff('gitsearch1', 'v2.5').path('lib/')
138139
g.diff('gitsearch1', @git.gtree('v2.5'))

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.9.1
1+
1.2.10

git.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Gem::Specification.new do |s|
22
s.authors = ['Scott Chacon']
3-
s.date = '2015-01-13'
3+
s.date = '2016-02-25'
44
s.email = '[email protected]'
55
s.homepage = 'http://github.com/schacon/ruby-git'
66
s.license = 'MIT'
77
s.name = 'git'
88
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.'
9-
s.version = '1.2.9.1'
9+
s.version = '1.2.10'
1010

1111
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1212
s.require_paths = ['lib']
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515
s.add_development_dependency 'rake'
1616
s.add_development_dependency 'rdoc'
1717
s.add_development_dependency 'test-unit', '>=2', '< 4'
18-
18+
1919
s.extra_rdoc_files = ['README.md']
2020
s.rdoc_options = ['--charset=UTF-8']
2121

lib/git/version.rb

+1-1
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.9'
5+
VERSION='1.2.10'
66

77
end

0 commit comments

Comments
 (0)