From b6f3ae9ee9bfe3bebdb330b1c5adf9cfcd1be128 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 1 Aug 2019 12:26:55 -0400 Subject: - 1.1.0 --- doc/build/changelog.rst | 52 +++++++++++++++++++++++++++++++++++++++++++- doc/build/conf.py | 2 +- doc/build/unreleased/249.rst | 14 ------------ doc/build/unreleased/295.rst | 9 -------- doc/build/unreleased/301.rst | 8 ------- doc/build/unreleased/303.rst | 15 ------------- 6 files changed, 52 insertions(+), 48 deletions(-) delete mode 100644 doc/build/unreleased/249.rst delete mode 100644 doc/build/unreleased/295.rst delete mode 100644 doc/build/unreleased/301.rst delete mode 100644 doc/build/unreleased/303.rst diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst index 7f073cd..253b819 100644 --- a/doc/build/changelog.rst +++ b/doc/build/changelog.rst @@ -8,7 +8,57 @@ Changelog .. changelog:: :version: 1.1.0 - :include_notes_from: unreleased + :released: Thu Aug 1 2019 + + .. change:: + :tags: bug, py3k, windows + :tickets: 301 + + Replaced usage of time.clock() on windows as well as time.time() elsewhere + for microsecond timestamps with timeit.default_timer(), as time.clock() is + being removed in Python 3.8. Pull request courtesy Christoph Reiter. + + + .. change:: + :tags: bug, py3k + :tickets: 295 + + Replaced usage of ``inspect.getfullargspec()`` with the vendored version + used by SQLAlchemy, Alembic to avoid future deprecation warnings. Also + cleans up an additional version of the same function that's apparently + been floating around for some time. + + + .. change:: + :tags: changed, setup + :tickets: 303 + + 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: changed, py3k, installer + :tickets: 249 + + Mako 1.1 now supports Python versions: + + * 2.7 + * 3.4 and higher + + This includes that setup.py no longer includes any conditionals, allowing + for a pure Python wheel build, however this is not necessarily part of the + Pypi release process as of yet. The test suite also raises for Python + deprecation warnings. + 1.0 === diff --git a/doc/build/conf.py b/doc/build/conf.py index 04b9423..15256f4 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -88,7 +88,7 @@ copyright = u"the Mako authors and contributors" # The short X.Y version. version = mako.__version__ # The full version, including alpha/beta/rc tags. -release = "1.0.14" +release = "1.1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/build/unreleased/249.rst b/doc/build/unreleased/249.rst deleted file mode 100644 index da9767c..0000000 --- a/doc/build/unreleased/249.rst +++ /dev/null @@ -1,14 +0,0 @@ -.. change:: - :tags: changed, py3k, installer - :tickets: 249 - - Mako 1.1 now supports Python versions: - - * 2.7 - * 3.4 and higher - - This includes that setup.py no longer includes any conditionals, allowing - for a pure Python wheel build, however this is not necessarily part of the - Pypi release process as of yet. The test suite also raises for Python - deprecation warnings. - diff --git a/doc/build/unreleased/295.rst b/doc/build/unreleased/295.rst deleted file mode 100644 index 147d23b..0000000 --- a/doc/build/unreleased/295.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, py3k - :tickets: 295 - - Replaced usage of ``inspect.getfullargspec()`` with the vendored version - used by SQLAlchemy, Alembic to avoid future deprecation warnings. Also - cleans up an additional version of the same function that's apparently - been floating around for some time. - diff --git a/doc/build/unreleased/301.rst b/doc/build/unreleased/301.rst deleted file mode 100644 index 7e9f1d2..0000000 --- a/doc/build/unreleased/301.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, py3k, windows - :tickets: 301 - - Replaced usage of time.clock() on windows as well as time.time() elsewhere - for microsecond timestamps with timeit.default_timer(), as time.clock() is - being removed in Python 3.8. Pull request courtesy Christoph Reiter. - diff --git a/doc/build/unreleased/303.rst b/doc/build/unreleased/303.rst deleted file mode 100644 index ac65612..0000000 --- a/doc/build/unreleased/303.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. change:: - :tags: changed, setup - :tickets: 303 - - 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 -- cgit v1.2.3