From aecc474bdeb428a61c502c4e829a431d188e9284 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 14 Mar 2010 16:51:25 +0000 Subject: [PATCH] Prep for 0.1. --- CHANGES.txt | 2 +- README.txt | 5 +++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index fbf8086..eefa1f9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,7 @@ Changes ======= -0.0 (unreleased) +0.1 (2010-03-14) ---------------- - Initial release. diff --git a/README.txt b/README.txt index 881d706..b1208ea 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -colander +Colander ======== An extensible package which can be used to: @@ -9,4 +9,5 @@ An extensible package which can be used to: - serialize an arbitrary data structure to a data structure composed of strings, mappings, and lists. -Please see docs/index.rst for further documentation. +Please see `http://docs.repoze.org/colander +`_ for further documentation. diff --git a/setup.py b/setup.py index c14b4bc..30a64de 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [] setup(name='colander', - version='0.0', + version='0.1', description=('A simple schema-based serialization and deserialization ' 'library'), long_description=README + '\n\n' + CHANGES,