aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-08-01 12:26:55 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-08-01 12:26:55 -0400
commitb6f3ae9ee9bfe3bebdb330b1c5adf9cfcd1be128 (patch)
tree919372c76242f4dabdc74033ed09d3d8eff97498
parent1c29e84f7f371d17baa81726f7fdcbc892d0dbe7 (diff)
downloadexternal_python_mako-b6f3ae9ee9bfe3bebdb330b1c5adf9cfcd1be128.tar.gz
external_python_mako-b6f3ae9ee9bfe3bebdb330b1c5adf9cfcd1be128.tar.bz2
external_python_mako-b6f3ae9ee9bfe3bebdb330b1c5adf9cfcd1be128.zip
- 1.1.0rel_1_1_0
-rw-r--r--doc/build/changelog.rst52
-rw-r--r--doc/build/conf.py2
-rw-r--r--doc/build/unreleased/249.rst14
-rw-r--r--doc/build/unreleased/295.rst9
-rw-r--r--doc/build/unreleased/301.rst8
-rw-r--r--doc/build/unreleased/303.rst15
6 files changed, 52 insertions, 48 deletions
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