[py-svn] py commit acc532fe1fca: fix docs to point to 1.4.0

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Tue Nov 23 17:54:59 CET 2010


# HG changeset patch -- Bitbucket.org
# Project py
# URL http://bitbucket.org/hpk42/py/overview
# User holger krekel <holger at merlinux.eu>
# Date 1290531288 -3600
# Node ID acc532fe1fcaa6effcc820afa7b8a80502cd00e8
# Parent  572f3f908bceffa7bfe1590846e711a41b7f9524
fix docs to point to 1.4.0

--- a/doc/conf.py
+++ b/doc/conf.py
@@ -48,11 +48,11 @@ copyright = u'2010, holger krekel et. al
 # built documents.
 #
 # The short X.Y version.
-version = '2.0.0'
 # The full version, including alpha/beta/rc tags.
 import py, pytest
 assert py.path.local().relto(py.path.local(py.__file__).dirpath().dirpath())
 release = py.__version__
+version = ".".join(release.split(".")[:2])
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

--- a/doc/announce/release-2.0.0.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-
-.. _`release-2.0.0`:
-
-pylib 2.0.0: cross-platform library for path, code, io, ... manipulations
-===========================================================================
-
-"pylib" is a library comprising APIs for filesystem and svn path manipulations,
-dynamic code construction, IO capturing and a Python2/Python3 compatibility
-namespace.  It runs unmodified on all Python interpreters compatible to
-Python2.4 up until Python 3.2.  "pylib" functionality used to be contained in a
-PyPI distribution named "py" and then contained "py.test" and other
-command line tools.  This is now history.  "pytest" is its own distribution
-and "pylib" can be and is used completely separately from py.test.
-The other "py.*" command line tools are installed with the new
-separate "pycmd" distribution.
-
-The general idea for "pylib" is to place high value on providing
-some basic APIs that are continously tested against many Python
-interpreters and thus also to help transition.
-
-cheers,
-holger
-

--- /dev/null
+++ b/doc/announce/release-1.4.0.txt
@@ -0,0 +1,21 @@
+
+.. _`release-1.4.0`:
+
+pylib 1.4.0: cross-platform library for path, code, io, ... manipulations
+===========================================================================
+
+"py" is a small library comprising APIs for filesystem and svn path manipulations,
+dynamic code construction and introspection, IO capturing and a Python2/Python3
+compatibility namespace.  It runs unmodified on all Python interpreters compatible
+to Python2.4 up until Python 3.2.
+
+The py distribution prior to 1.4.0 used to contain "py.test" which now
+comes as its own "pytest" distribution.  Also, the "py.cleanup|py.lookup|py.countloc"
+etc. helpers are now part of pycmd.  This makes "py-1.4.0" a simple library
+not installing any command line utilities.  The general idea for "py" is to
+place high value on providing some basic APIs that are continously tested
+against many Python interpreters and thus also to help transition.
+
+cheers,
+holger
+

--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,5 @@
 
-Changes between 1.3.4 and 2.0.0dev0
+Changes between 1.3.4 and 1.4.0dev0
 ==================================================
 
 - py.test was moved to a separate "pytest" package. What remains is



More information about the pytest-commit mailing list