# HG changeset patch # User Paul Boddie # Date 1460924022 -7200 # Node ID 37efd2dfbe27c4412a6cbc188031e50db40d05bb # Parent fdf18b11959bb5c320c2d86792a19c1facd5e8d3 Updated the release information and version number. diff -r fdf18b11959b -r 37efd2dfbe27 PKG-INFO --- a/PKG-INFO Tue Oct 13 19:29:52 2015 +0200 +++ b/PKG-INFO Sun Apr 17 22:13:42 2016 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: vContent -Version: 0.2.1 +Version: 0.3 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie diff -r fdf18b11959b -r 37efd2dfbe27 README.txt --- a/README.txt Tue Oct 13 19:29:52 2015 +0200 +++ b/README.txt Sun Apr 17 22:13:42 2016 +0200 @@ -28,6 +28,17 @@ Copyright and licence information can be found in the docs directory - see docs/COPYING.txt and docs/gpl-3.0.txt for more information. +New in vContent 0.3 (Changes since vContent 0.2.1) +-------------------------------------------------- + + * Added support for interpreting recurrence rules. + * Fixed conversion to dictionary for multivalued definitions (such as + FREEBUSY). + * Raise a ParseError upon parsing ill-formed files. + * Produce a value of None for empty properties. + * Employ proper Unicode readers and writers. + * Added timezone-related section types. + New in vContent 0.2.1 (Changes since vContent 0.2) -------------------------------------------------- diff -r fdf18b11959b -r 37efd2dfbe27 docs/COPYING.txt --- a/docs/COPYING.txt Tue Oct 13 19:29:52 2015 +0200 +++ b/docs/COPYING.txt Sun Apr 17 22:13:42 2016 +0200 @@ -1,7 +1,8 @@ Licence Agreement for vContent ------------------------------ -Copyright (C) 2005, 2006, 2007, 2008, 2009, 2011, 2013 Paul Boddie +Copyright (C) 2005, 2006, 2007, 2008, 2009, 2011, + 2013, 2014, 2015, 2016 Paul Boddie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff -r fdf18b11959b -r 37efd2dfbe27 setup.py --- a/setup.py Tue Oct 13 19:29:52 2015 +0200 +++ b/setup.py Sun Apr 17 22:13:42 2016 +0200 @@ -7,6 +7,6 @@ description = "Parsing and serialisation of iCalendar/vCalendar-style data", author = "Paul Boddie", author_email = "paul@boddie.org.uk", - version = "0.2.1", - py_modules = ["vContent", "vCalendar"] + version = "0.3", + py_modules = ["vContent", "vCalendar", "vRecurrence"] )