From f5e46bfc9feb91dfe790283c71b6eed254c0a8cd Mon Sep 17 00:00:00 2001 From: Gustavo Narea Date: Tue, 3 Nov 2015 23:25:41 +0000 Subject: [PATCH] Prepared for final release Also updated changelog --- VERSION.txt | 2 +- dev-requirements.txt | 1 + docs/source/changelog.rst | 15 +++++++++++++++ docs/source/index.rst | 2 +- setup.cfg | 3 +++ 5 files changed, 21 insertions(+), 2 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index ac0ac11..d3827e7 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.0rc3 +1.0 diff --git a/dev-requirements.txt b/dev-requirements.txt index 0a72b5f..b578630 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -2,4 +2,5 @@ ipython sphinx alabaster == 0.7.6 +wheel --requirement tests/requirements.txt diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index bd93793..2b30ee8 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,21 @@ Changelog ========= +Version 1.0 Final (2015-11-03) +------------------------------ + +No code change from previous release -- This is just to say "it's definitely +production-ready". However, the following minor changes were made: + +- Altered test suite to ensure Python 3.4 and 3.5 were supported, as well as + PyPy3. +- Dropped support for Python 3.2 because ``coverage.py`` v4 no longer supports + it, so the test suite wouldn't run anymore in this environment. This version + will work on Python 3.2, but future releases may not. +- Marked `Wheel `_ distribution as + universal. + + Version 1.0rc2 (2015-02-18) --------------------------- diff --git a/docs/source/index.rst b/docs/source/index.rst index 1caf61b..8e1e691 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -71,7 +71,7 @@ PYPI `_ or install it with pip: .. code-block:: bash - pip install --pre pyrecord + pip install pyrecord Do you like what you've seen? Read on to learn more! diff --git a/setup.cfg b/setup.cfg index f5b0641..5067815 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ [aliases] release = egg_info --no-date --no-svn-revision sdist bdist_wheel upload upload_docs + +[bdist_wheel] +universal = 1