Skip to content
Snippets Groups Projects
Commit b8a3d3b3 authored by Tom Preston-Werner's avatar Tom Preston-Werner
Browse files

Release 2.3.0

parent 9f2d86b9
No related branches found
No related tags found
No related merge requests found
== HEAD
== 2.3.0 / 2010-09-29
* Minor Enhancements
* Add Grit::Repo.init.
* Bug Fixes
Loading
Loading
@@ -6,7 +6,8 @@
 
== 2.2.1 / 2010-08-23
* Bug Fixes
* Fix minor regression due to the changed default values in Grit::Index#commit.
* Fix minor regression due to the changed default values in
Grit::Index#commit.
 
== 2.2.0 / 2010-08-19
* Minor Enhancements
Loading
Loading
@@ -40,7 +41,8 @@
* Removed all trailing whitespace in code files
* Bug Fixes
* Repo.archive_tar_gz now passes -n option to gzip to be idempotent
* Fix RubyGit's diff to detect additions and deletions [github.com/defunkt]
* Fix RubyGit's diff to detect additions and deletions
[github.com/defunkt]
 
== 1.1.1 / 2009-03-31
* Changes
Loading
Loading
@@ -54,17 +56,25 @@
* Minor Enhancements
* Convert readme to markdown
* Added a shortcut for commit_stats as Commit#stats [github.com/js]
* Add a #basename method to Submodule, Blob and Tree for retrieving the name [github.com/js]
* Make Grit::Submodule grasp the concept of non-unix lineendings [github.com/js]
* Add a #basename method to Submodule, Blob and Tree for retrieving the
name [github.com/js]
* Make Grit::Submodule grasp the concept of non-unix lineendings
[github.com/js]
* Added Repo#commit_deltas_from [github.com/js]
* do some mild shell escaping when running commands [github.com/js]
* Added two shortcut methods to Tree, for picking trees/blobs only [github.com/Voker57]
* Added two shortcut methods to Tree, for picking trees/blobs only
[github.com/Voker57]
* Added <=> method to Blob, needed for sorting tree [github.com/Voker57]
* Make the number of bytes to be read from git's stdout configurable [github.com/josb]
* Repo.archive_to_file accepts extra parameters making plain zipping possible [github.com/darwin]
* Handle commit stats that summarize commits with binary changes [github.com/therealadam]
* Add a DiffStat class for easy access to diff stats [github.com/therealadam]
* Don't split git logs that contain blank lines into two CommitStats [github.com/therealadam]
* Make the number of bytes to be read from git's stdout configurable
[github.com/josb]
* Repo.archive_to_file accepts extra parameters making plain zipping
possible [github.com/darwin]
* Handle commit stats that summarize commits with binary changes
[github.com/therealadam]
* Add a DiffStat class for easy access to diff stats
[github.com/therealadam]
* Don't split git logs that contain blank lines into two CommitStats
[github.com/therealadam]
* Add DiffStat#net for total change count [github.com/therealadam]
 
== 1.0.3 / 2009-02-13
Loading
Loading
@@ -86,10 +96,10 @@
 
== 0.8.3 / 2008-07-07
* Capture stderr and log if debug is true (rsanheim)
== 0.8.2 / 2008-06-27
* Allow user provided logger (rsanheim)
== 0.8.0 / 2008-04-24
* Lots of fixes and additions
 
Loading
Loading
Loading
Loading
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
 
s.name = 'grit'
s.version = '2.2.0'
s.date = '2010-08-19'
s.version = '2.3.0'
s.date = '2010-09-29'
s.rubyforge_project = 'grit'
 
s.summary = "Ruby Git bindings."
Loading
Loading
Loading
Loading
@@ -51,7 +51,7 @@ require 'grit/blame'
require 'grit/merge'
 
module Grit
VERSION = '2.2.0'
VERSION = '2.3.0'
 
class << self
# Set +debug+ to true to log all git calls and responses
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment