-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[|\] Merge branch 'release-0.5' into develop.
- Loading branch information
Showing
3 changed files
with
16 additions
and
5 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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
ayrton (0.4.4) UNRELEASED; urgency=medium | ||
ayrton (0.5) UNRELEASED; urgency=medium | ||
|
||
* source() is out. use python's import system. | ||
* Support executing foo.py(). | ||
|
||
-- Marcos Dione <[email protected]> Wed, 20 May 2015 23:44:45 +0200 | ||
* Much better command detection. | ||
* CommandNotFound exception is now a subclass of NameError. | ||
* Allow Command keywords be named like '-l' and '--long-option', so it supports options with dashes. | ||
* This also means that long-option is no longer passed as --long-option; you have to put the dashes explicitly. | ||
* bash() does not return a single string by default; override with single=True. | ||
* Way more tests. | ||
* Updated docs. | ||
|
||
-- Marcos Dione <[email protected]> Sun, 30 Aug 2015 15:13:30 +0200 | ||
|
||
ayrton (0.4.3) unstable; urgency=medium | ||
|
||
|
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 |
---|---|---|
|
@@ -14,7 +14,11 @@ | |
author= 'Marcos Dione', | ||
author_email= '[email protected]', | ||
url= 'https://github.com/StyXman/ayrton', | ||
packages= [ 'ayrton', 'ayrton.parser', 'ayrton.parser.pyparser', 'ayrton.parser.astcompiler' ], | ||
packages= [ 'ayrton', 'ayrton.parser', 'ayrton.parser.pyparser', | ||
'ayrton.parser.astcompiler' ], | ||
package_data= { | ||
'ayrton.parser.pyparser': [ 'data/Grammar3.3' ], | ||
}, | ||
scripts= [ 'bin/ayrton' ], | ||
license= 'GPLv3', | ||
classifiers= [ | ||
|