Skip to content

Commit

Permalink
[|\] Merge branch 'release-0.5' into develop.
Browse files Browse the repository at this point in the history
  • Loading branch information
StyXman committed Aug 30, 2015
2 parents 66f5958 + 45bb18d commit 6bff5c1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
13 changes: 10 additions & 3 deletions ChangeLog.rst
@@ -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 <mdione@grulic.org.ar> 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 <mdione@grulic.org.ar> Sun, 30 Aug 2015 15:13:30 +0200

ayrton (0.4.3) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion ayrton/__init__.py
Expand Up @@ -36,7 +36,7 @@
from ayrton.parser.pyparser.pyparse import CompileInfo, PythonParser
from ayrton.parser.astcompiler.astbuilder import ast_from_node

__version__= '0.4.4'
__version__= '0.5'

def parse (script, file_name=''):
parser= PythonParser (None)
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -14,7 +14,11 @@
author= 'Marcos Dione',
author_email= 'mdione@grulic.org.ar',
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= [
Expand Down

0 comments on commit 6bff5c1

Please sign in to comment.