Skip to content

Commit

Permalink
Updated CHANGELOG for 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Oct 18, 2018
1 parent 22c9e8a commit 32ae582
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 122 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,48 @@ Xonsh Change Log

.. current developments
v0.8.1
====================

**Added:**

* ``SubprocSpec`` has a new ``pipeline_index`` integer attribute that indicates
the commands position in a pipeline. For example, in

.. code-block:: sh
p = ![ls -l | grep x]
The ``ls`` command would have a pipeline index of 0
(``p.specs[0].pipeline_index == 0``) and ``grep`` would have a pipeline index
of 1 (``p.specs[1].pipeline_index == 1``). This may be usefule in callable
alaises which recieve the spec as an argument.


**Changed:**

* Removed ``fish`` from list of supported foreign shells in the wizard.
* Circle CI config updated to use a pinned version of ``black`` (18.9b0)
* Pytest plugin now uses ``xonsh.main.setup()`` to setup test environment.
* Linux platform discovery will no longer use ``platform.linux_distribution()``
on Python >=3.6.6. due to pending deprecation warning.
* Updated Linux Guide as Xonsh is now available in Arch Linux official repositories.


**Fixed:**

* Builtin dynamic proxies and deprecation warning proxies were not deleting
attributes and items properly.
* Fixed stdout/sdterr writing infinite recurssion error that would occur in
long pipelines of callable aliases.
* Fixed a bug which under very rare conditions could cause the shell
to die with PermissionError exception while sending SIGSTOP signal
to a child process.
* Fixed further raw string deprecation warnings thoughout the code base.




v0.8.0
====================

Expand Down
14 changes: 0 additions & 14 deletions news/deldisp.rst

This file was deleted.

14 changes: 0 additions & 14 deletions news/dispredir.rst

This file was deleted.

13 changes: 0 additions & 13 deletions news/patch-1.rst

This file was deleted.

13 changes: 0 additions & 13 deletions news/pin-black-in-ci.rst

This file was deleted.

23 changes: 0 additions & 23 deletions news/specidx.rst

This file was deleted.

15 changes: 0 additions & 15 deletions news/sudo-permission-error.rst

This file was deleted.

17 changes: 0 additions & 17 deletions news/test-fix.rst

This file was deleted.

13 changes: 0 additions & 13 deletions news/updatedlinux.rst

This file was deleted.

0 comments on commit 32ae582

Please sign in to comment.