~ubuntu-branches/ubuntu/saucy/python-git/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/git/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Watkins
  • Date: 2009-02-07 12:10:15 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090207121015-62n70q2nyl96w2fe
Tags: 0.1.6-1
* New upstream release. (Closes: #512584)
* Changed licensing of packaging to match upstream's license.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# __init__.py
2
 
# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors
 
2
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
3
3
#
4
4
# This module is part of GitPython and is released under
5
5
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7
7
import os
8
8
import inspect
9
9
 
10
 
__version__ = '0.1.5'
 
10
__version__ = '0.1.6'
11
11
 
12
12
from git.actor import Actor
13
13
from git.blob import Blob