Skip to content

Commit 51e3e27

Browse files
Updating gem version
Updating gemspec to add some doc files Renaming History.txt to CHANGELOG
1 parent 94836cf commit 51e3e27

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

History.txt renamed to CHANGELOG

File renamed without changes.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.8
1+
1.2.9

git.gemspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
require 'date'
22

3-
require "#{File.expand_path(File.dirname(__FILE__))}/lib/git/version"
4-
53
Gem::Specification.new do |s|
64
s.authors = ['Scott Chacon']
7-
s.date = Date.today.to_s
5+
s.date = '2015-01-07'
86
s.email = 'schacon@gmail.com'
97
s.homepage = 'http://github.com/schacon/ruby-git'
108
s.license = 'MIT'
119
s.name = 'git'
1210
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
11+
s.version = '1.2.9'
1412

1513
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1614
s.require_paths = ['lib']
@@ -24,7 +22,10 @@ Gem::Specification.new do |s|
2422
s.rdoc_options = ['--charset=UTF-8']
2523

2624
s.files = [
25+
'CHANGELOG',
2726
'LICENSE',
27+
'README.md',
28+
'VERSION',
2829
'lib/git.rb',
2930
'lib/git/author.rb',
3031
'lib/git/base.rb',

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.8'
5+
VERSION='1.2.9'
66

77
end

0 commit comments

Comments
 (0)