forked from fabtools/fabtools
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Changelog | ||
========= | ||
|
||
Version 0.2 (2012-03-09) | ||
------------------------ | ||
|
||
* Added support for hostname and sysctl (kernel parameters) | ||
* Added support for Redis | ||
* Simplified API for supervisor processes | ||
|
||
Version 0.1.1 (2012-02-19) | ||
-------------------------- | ||
|
||
* Packaging fixes | ||
|
||
Version 0.1 (2012-02-19) | ||
------------------------ | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ def read(filename): | |
|
||
setup( | ||
name='fabtools', | ||
version='0.1.1', | ||
version='0.2', | ||
description='Tools for writing awesome Fabric files', | ||
long_description=read('README.rst'), | ||
long_description=read('README.rst') + read('CHANGELOG.rst'), | ||
author='Ronan Amicel', | ||
author_email='[email protected]', | ||
url='http://github.com/ronnix/fabtools', | ||
|