From b9298c8306a68cadf61f893d71edfe96a34112b0 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 15 Apr 2015 09:43:12 -0500 Subject: update releasing.txt to use twine/wheels --- RELEASING.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASING.txt b/RELEASING.txt index d891aa620..1cc9e265f 100644 --- a/RELEASING.txt +++ b/RELEASING.txt @@ -40,10 +40,11 @@ Releasing Pyramid - Create a release tag. -- Make sure your system Python has ``setuptools-git`` installed and release to - PyPI:: +- Make sure your Python has ``setuptools-git``, ``twine`` and ``wheel`` + installed and release to PyPI:: - $ python setup.py sdist register upload + $ python setup.py sdist bdist_wheel + $ twine upload dist/pyramid-X.X-* - Edit `http://wiki.python.org/moin/WebFrameworks `_. -- cgit v1.2.3 From 55fad6e700b4910bc9f47f2380a0279047a93b7b Mon Sep 17 00:00:00 2001 From: Tim Tisdall Date: Wed, 15 Apr 2015 14:53:31 +0000 Subject: typo --- docs/whatsnew-1.6.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/whatsnew-1.6.rst b/docs/whatsnew-1.6.rst index c38aa7a91..b99ebeec4 100644 --- a/docs/whatsnew-1.6.rst +++ b/docs/whatsnew-1.6.rst @@ -2,7 +2,7 @@ What's New In Pyramid 1.6 ========================= This article explains the new features in :app:`Pyramid` version 1.6 as -compared to its predecessor, :app:`Pyramid` 1.6. It also documents backwards +compared to its predecessor, :app:`Pyramid` 1.5. It also documents backwards incompatibilities between the two versions and deprecations added to :app:`Pyramid` 1.6, as well as software dependency changes and notable documentation additions. -- cgit v1.2.3 From fa16cb17480543f027bd5316edd3d4878513e5f7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Apr 2015 11:39:06 -0400 Subject: meta related to whatsnew changing --- RELEASING.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RELEASING.txt b/RELEASING.txt index 1cc9e265f..6d25ecb62 100644 --- a/RELEASING.txt +++ b/RELEASING.txt @@ -29,6 +29,9 @@ Releasing Pyramid - update README.rst to use correct versions of badges and URLs according to each branch and context, i.e., RTD "latest" == GitHub/Travis "1.x-branch". +- Update whatsnew-X.X.rst in docs to point at change log entries for individual + releases if applicable. + - Change setup.py version to the new version number. - Change CHANGES.txt heading to reflect the new version number. -- cgit v1.2.3