-
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 from release-0.6, released as 0.6.
- Loading branch information
Showing
19 changed files
with
845 additions
and
429 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,17 +1,37 @@ | ||
ayrton (0.5) UNRELEASED; urgency=medium | ||
ayrton (0.6) UNRELEASED; urgency=medium | ||
|
||
* Great improvements in `remote()`'s API and sematics: | ||
* Made sure local varaibles go to and come back from the remote. | ||
* Code block is executes syncronically. | ||
* For the moment the streams are no longer returned. | ||
* _python_only option is gone. | ||
* Most tests actually connect to a listening netcat, only one test uses `ssh`. | ||
* Fixed bugs in the new parser. | ||
* Fixed globals/locals mix up. | ||
* Scripts are no longer wrapped in a function. This means that you can't return values and that module semantics are restored. | ||
* `ayrton` exits with status 1 when the script fails to run (SyntaxError, etc). | ||
|
||
-- Marcos Dione <[email protected]> Wed, 28 Oct 2015 20:57:19 +0100 | ||
|
||
ayrton (0.5) unstable; urgency=medium | ||
|
||
* source() is out. use python's import system. | ||
* Support executing foo.py(). | ||
* 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. | ||
* `CommandNotFound` exception is now a subclass of `NameError`. | ||
* Allow `Command` keywords be named like `-l` and `--long-option`, so it supports options with single dashes (`-long-option`, à la `find`). | ||
* 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.4) unstable; urgency=low | ||
|
||
* `source()` is out. use Python's import system. | ||
* Support executing `foo.py()`. | ||
|
||
-- Marcos Dione <[email protected]> Wed, 20 May 2015 23:44:42 +0200 | ||
|
||
ayrton (0.4.3) unstable; urgency=medium | ||
|
||
* Let commands handle SIGPIE and SIGINT. Python does funky things to them. | ||
|
@@ -24,7 +44,7 @@ ayrton (0.4.3) unstable; urgency=medium | |
ayrton (0.4.2) unstable; urgency=low | ||
|
||
* _bg allows running a command in the background. | ||
* _fails allows a Command to fail even when option('-e') is on. | ||
* _fails allows a Command to fail even when option('-e') is on. | ||
* Try program_name as program-name if the first failed the path lookup. | ||
* Convert all arguments to commands to str(). | ||
* chdir() is an alias of cd(). | ||
|
@@ -41,7 +61,7 @@ ayrton (0.4.2) unstable; urgency=low | |
ayrton (0.4) unstable; urgency=low | ||
|
||
* >= can redirect stederr to stdout. | ||
* o(option=argument) can be used to declare keyword params among/before | ||
* o(option=argument) can be used to declare keyword params among/before | ||
positional ones. | ||
* bash() now returns a single string if there is only one result. | ||
* Slightly better error reporting: don't print a part of the stacktrace | ||
|
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
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
Oops, something went wrong.