schacon / grit forked from mojombo/grit

Grit is a Ruby library for extracting information from a git repository in an object oriented manner - this fork tries to intergrate as much pure-ruby functionality as possible

grit / History.txt
100644 54 lines (44 sloc) 2.165 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
== 1.1.1 / 2009-03-31
  * Changes
    * Don't include test directory in gem package (it's too big)
 
== 1.1.0 / 2009-03-29
  * Backwards breaking changes
    * Diff#a_commit -> Diff#a_blob, Diff#b_commit -> Diff#b_blob
  * Major Enhancments
    * Ruby 1.9 compatibility [github.com/chapados, github.com/js]
  * 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]
    * 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 <=> 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]
    * Add DiffStat#net for total change count [github.com/therealadam]
 
== 1.0.3 / 2009-02-13
  * Minor Enhancements
    * Added Grit::Commit#to_patch for plaintext formatted patches.
    * Fixed Grit::Tag to work with annotated tags.
 
== 1.0.2 / 2009-02-10
  * Minor Enhancements
    * Implement Grit.version to use VERSION.yml file
 
== 1.0.1 / 2009-02-10
  * Bug Fixes
    * Add diff-lcs as a dependency
 
== 1.0.0 / 2009-01-27
  * Tons of awesome in here. Also, we suck at updating the history.
  * Let's do better at that from now on.
 
== 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
 
== 0.7.0 / 2008-01-07
  * First public release!