Skip to content

Commit dd3ae28

Browse files
committed
Version 2.0a8
1 parent 48d6471 commit dd3ae28

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

README.rst

+16-7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ Project page: http://github.com/dokai/gitctl
88
Change history
99
**************
1010

11+
2.0a8 (2010-04-11)
12+
==================
13+
14+
- Bound GitPython dependency at version 0.1.7. gitctl is not compatible with
15+
the newer versions. [dokai]
16+
17+
- Added experimental Growl support. You need to have the Growl python
18+
bindings installed for it to work.
19+
1120
2.0a7 (2009-08-03)
1221
==================
1322

@@ -24,14 +33,14 @@ Change history
2433

2534
2.0a6 (2009-05-27)
2635
==================
27-
36+
2837
- Refactored the "gitctl pending" command to support only the comparison
2938
between the pinned down revisions in the externals configuration and the
3039
HEADs of the production branches. In practice this means the the former
3140
--production switch is the default behavior and the --production, --staging
3241
and --dev options have been removed. The refactored "gitctl status"
3342
replaces the former functionality. [dokai]
34-
43+
3544
- Refactored the "gitctl status" command to give more elaborate information
3645
about the status of the repository. [dokai]
3746

@@ -67,14 +76,14 @@ Change history
6776
- Fixed 'gitctl pending --production' which compared the wrong trees. When
6877
using pinned down revisions (HEADless working directories) we need to
6978
always compare against the remote branches. [dokai]
70-
79+
7180
- Fixed a bug in 'gitctl pending' if not all branches were available. [dokai]
7281

7382
- Added the '-v' switch to show the version of the gitctl. [dokai]
7483

7584
2.0a3 (2008-09-21)
7685
==================
77-
86+
7887
- Added support for specifying the initial commit message by using
7988
'gitctl create --message'. [dokai]
8089

@@ -180,7 +189,7 @@ gitctl.cfg
180189

181190
Name of the production branch. The above ``branches`` listing will be made
182191
to implicitly contain this branch.
183-
192+
184193
``commit-email``
185194

186195
Email address where commit emails will be sent. Only used when creating
@@ -310,7 +319,7 @@ gitctl path
310319
Outputs the path(s) of the project directories::
311320

312321
$ cd /Users/rnd/buildout/
313-
$ gitctl path -f refactoring_these_projects
322+
$ gitctl path -f refactoring_these_projects
314323
/Users/rnd/buildout/products/Project1
315324
/Users/rnd/buildout/products/Project2
316325
/Users/rnd/buildout/src/Project3
@@ -366,7 +375,7 @@ Dependencies
366375

367376
* Git_ >= 1.6
368377
* argparse_
369-
* GitPython_ >= 0.1.5
378+
* GitPython_ == 0.1.7
370379

371380
.. _Git: http://git-scm.com/
372381
.. _argparse: http://argparse.python-hosting.com/

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
def read(*rnames):
66
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
77

8-
version = '2.0a7'
8+
version = '2.0a8'
99

1010
setup(name='gitctl',
1111
version=version,
@@ -33,7 +33,7 @@ def read(*rnames):
3333
install_requires=[
3434
'setuptools',
3535
'argparse',
36-
'GitPython>=0.1.5',
36+
'GitPython==0.1.7',
3737
'mock',
3838
],
3939
test_suite='gitctl.tests.test_suite',

0 commit comments

Comments
 (0)