Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tomerfiliba/plumbum
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c120d2fa3e2075670a8be1a8ddc2675af260725b
Choose a base ref
..
head repository: tomerfiliba/plumbum
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fc874f6ce4963c2696babbf73c9b7384238b76e4
Choose a head ref
Showing with 21 additions and 8 deletions.
  1. +3 −3 .travis.yml
  2. +11 −0 CHANGELOG.rst
  3. +3 −3 README.rst
  4. +2 −0 docs/_news.rst
  5. +2 −2 plumbum/version.py
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -41,10 +41,10 @@ notifications:
on_failure: change
deploy:
provider: pypi
user: henryiii
user: "__token__"
distributions: sdist bdist_wheel
skip_existing: true
on:
tags: true
password:
secure: qPcFTJirTGTaTFok6oHz3HEFKiIWIQolBCm2nxsluJ4RVGE0AIH6OoBsN5JYr9nbb0t7KA2cqhJEupD6KQDpDD5b9gEwjnXnyG1Nx22cqAJGw9hKBY3UT5qGjX+6ov8iwWDalUe62rWym0I7kWYSGfn8QJiHX0Nj7ikSi6kmGCg=
condition: $PVV = 3.8
password: $PYPI_TOKEN
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1.6.9
-----

* Last version to support Python 2.6; added python_requires (`#507 <https://github.com/tomerfiliba/plumbum/pull/507>`_)
* Paths: Fix bug with subscription operations (`#498 <https://github.com/tomerfiliba/plumbum/pull/498>`_), (`#506 <https://github.com/tomerfiliba/plumbum/pull/506>`_)
* Paths: Fix resolve (`#492 <https://github.com/tomerfiliba/plumbum/pull/492>`_)
* Commands: Fix resolve (`#491 <https://github.com/tomerfiliba/plumbum/pull/491>`_)
* Commands: Add context manager on popen (`#495 <https://github.com/tomerfiliba/plumbum/pull/495>`_)
* Several smaller fixes (`#500 <https://github.com/tomerfiliba/plumbum/pull/500>`_), (`#505 <https://github.com/tomerfiliba/plumbum/pull/505>`_)


1.6.8
-----
* Exceptions: Changed ProcessExecutionError's formatting to be more user-friendly (`#456 <https://github.com/tomerfiliba/plumbum/pull/456>`_)
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@
.. image:: https://img.shields.io/pypi/pyversions/plumbum.svg
:target: https://pypi.python.org/pypi/plumbum/
:alt: PyPI Versions
.. image:: https://anaconda.org/conda-forge/plumbum/badges/version.svg
:target: https://anaconda.org/conda-forge/plumbum
:alt: Anaconda-Server Badge
.. image:: https://img.shields.io/conda/vn/conda-forge/plumbum.svg
:target: https://github.com/conda-forge/plumbum-feedstock
:alt: Conda-Forge Badge
.. image:: https://img.shields.io/pypi/l/plumbum.svg
:target: https://pypi.python.org/pypi/plumbum/
:alt: PyPI License
2 changes: 2 additions & 0 deletions docs/_news.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* **2020.03.23**: Version 1.6.9 released with several Path fixes, final version to support Python 2.6.

* **2019.10.30**: Version 1.6.8 released with ``local.cmd``, a few command updates, ``Set`` improvements, and ``TypedEnv``.

* **2018.08.10**: Version 1.6.7 released with several minor additions, mostly to CLI apps, and ``run_*`` modifiers added.
4 changes: 2 additions & 2 deletions plumbum/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = (1, 6, 8)
version = (1, 6, 9)
version_string = ".".join(map(str, version))
release_date = "2019.10.30"
release_date = "2020.03.23"