Skip to content

Commit

Permalink
- 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Sep 20, 2019
1 parent 143682d commit 107ff55
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 45 deletions.
49 changes: 48 additions & 1 deletion docs/build/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,54 @@ Changelog

.. changelog::
:version: 0.8.0
:include_notes_from: unreleased
:released: Fri Sep 20 2019

.. change::
:tags: bug, setup
:tickets: 157

Removed the "python setup.py test" feature in favor of a straight run of
"tox". Per Pypa / pytest developers, "setup.py" commands are in general
headed towards deprecation in favor of tox. The tox.ini script has been
updated such that running "tox" with no arguments will perform a single run
of the test suite against the default installed Python interpreter.

.. seealso::

https://github.com/pypa/setuptools/issues/1684

https://github.com/pytest-dev/pytest/issues/5534


.. change::
:tags: bug, py3k
:tickets: 154

Replaced the Python compatbility routines for ``getfullargspec()`` with a
fully vendored version from Python 3.3. Originally, Python was emitting
deprecation warnings for this function in Python 3.8 alphas. While this
change was reverted, it was observed that Python 3 implementations for
``getfullargspec()`` are an order of magnitude slower as of the 3.4 series
where it was rewritten against ``Signature``. While Python plans to
improve upon this situation, SQLAlchemy projects for now are using a simple
replacement to avoid any future issues.



.. change::
:tags: bug, installation
:tickets: 160

Pinned minimum version of Python decorator module at 4.0.0 (July, 2015) as
previous versions don't provide the API that dogpile is using.

.. change::
:tags: bug, py3k
:tickets: 159

Fixed the :func:`.sha1_mangle_key` key mangler to coerce incoming Unicode
objects into bytes as is required by the Py3k version of this function.


.. changelog::
:version: 0.7.1
Expand Down
2 changes: 1 addition & 1 deletion docs/build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# The short X.Y version.
version = dogpile.__version__
# The full version, including alpha/beta/rc tags.
release = "0.7.1"
release = "0.8.0"


# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
14 changes: 0 additions & 14 deletions docs/build/unreleased/154.rst

This file was deleted.

16 changes: 0 additions & 16 deletions docs/build/unreleased/157.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/build/unreleased/159.rst

This file was deleted.

6 changes: 0 additions & 6 deletions docs/build/unreleased/160.rst

This file was deleted.

0 comments on commit 107ff55

Please sign in to comment.