File tree 5 files changed +16
-10
lines changed
5 files changed +16
-10
lines changed Original file line number Diff line number Diff line change
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
+
1
6
== 1.2.9
2
7
3
8
* Adding Git.configure (to configure the git env)
14
19
* Improving Git::Object::Tag. Adding annotated?, tagger and message
15
20
* Supporting a submodule path as a valid repo
16
21
* Git.checkout - supporting -f and -b
17
- * Git.clone - supporting --branch
22
+ * Git.clone - supporting --branch
18
23
* Git.fetch - supporting --prune
19
- * Git.tag - supporting
24
+ * Git.tag - supporting
20
25
21
26
== 1.2.8
22
27
23
28
* Keeping the old escape format for windows users
24
29
* revparse: Supporting ref names containing SHA like substrings (40-hex strings)
25
30
* Fix warnings on Ruby 2.1.2
26
31
27
- == 1.2.7
32
+ == 1.2.7
28
33
29
34
* Fixing mesages encoding
30
35
* Fixing -f flag in git push
47
52
* Git.add - supporting --fore
48
53
* Git.init - supporting --bare
49
54
* 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
51
56
* Added Bundler to the formula
52
- * Travis configuration
57
+ * Travis configuration
53
58
* Licence included with the gem
54
59
55
60
== 1.0.4
Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ Here are the operations that need read permission only.
133
133
134
134
g.diff(commit1, commit2).size
135
135
g.diff(commit1, commit2).stats
136
+ g.diff(commit1, commit2).name_status
136
137
g.gtree(' v2.5' ).diff(' v2.6' ).insertions
137
138
g.diff(' gitsearch1' , ' v2.5' ).path(' lib/' )
138
139
g.diff(' gitsearch1' , @git .gtree(' v2.5' ))
Original file line number Diff line number Diff line change 1
- 1.2.9.1
1
+ 1.2.10
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |s |
2
2
s . authors = [ 'Scott Chacon' ]
3
- s . date = '2015-01-13'
3
+ s . date = '2016-02-25'
4
4
5
5
s . homepage = 'http://github.com/schacon/ruby-git'
6
6
s . license = 'MIT'
7
7
s . name = 'git'
8
8
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 '
10
10
11
11
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
12
12
s . require_paths = [ 'lib' ]
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
s . add_development_dependency 'rake'
16
16
s . add_development_dependency 'rdoc'
17
17
s . add_development_dependency 'test-unit' , '>=2' , '< 4'
18
-
18
+
19
19
s . extra_rdoc_files = [ 'README.md' ]
20
20
s . rdoc_options = [ '--charset=UTF-8' ]
21
21
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module Git
2
2
3
3
# The current gem version
4
4
# @return [String] the current gem version.
5
- VERSION = '1.2.9 '
5
+ VERSION = '1.2.10 '
6
6
7
7
end
You can’t perform that action at this time.
0 commit comments