-
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.7.1, released as 0.7.1.
- Loading branch information
Showing
12 changed files
with
206 additions
and
42 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,4 +1,12 @@ | ||
ayrton (0.7) UNRELEASED; urgency=medium | ||
ayrton (0.7.1) unstable; urgency=medium | ||
|
||
* Iterable parameters to executables are expanded in situ, so `foo(..., i, ...)` is expanded to `foo (..., i[0], i[1], ...` and `foo(..., k=i, ...)` is expanded to `foo (..., k=i[0], k=i[1], ...`. | ||
* `-x|--trace` allows for minimal execution tracing. | ||
* `-xx|--trace-with-linenos` allows for execution tracing that also prints the line number. | ||
|
||
-- Marcos Dione <[email protected]> Wed, 10 Feb 2016 10:14:17 +0100 | ||
|
||
ayrton (0.7) unstable; urgency=medium | ||
|
||
* Send data to/from the remote via another `ssh` channel, which is more stable than using `stdin`. | ||
* Stabilized a lot all tests, specially those using a mocked stdout for getting test validation. | ||
|
@@ -11,7 +19,7 @@ ayrton (0.7) UNRELEASED; urgency=medium | |
* `argv` is handled at the last time possible, allowing it being passed from test invoction. | ||
* `shift` complains on negative values. | ||
* Lazy `pprint()`, so debug statemens do not do useless work. | ||
* `stdin/out/err` handling in `remote()` is done by a single thread. | ||
* `stdin/out/err` handling in `remote()` is done by a single thread. | ||
* Modify a lot the local terminal when in `remote()` so, among other things, we have no local echo. | ||
* Properly pass the terminal type and size to the remote. These last three features allows programs like `vi` be run in the remote. | ||
* Paved the road to make `remote()`s more like `Command()`s. | ||
|
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
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
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.