diff --git a/README.rst b/README.rst index 608dd33..9bba509 100644 --- a/README.rst +++ b/README.rst @@ -40,7 +40,8 @@ Not included: * EXRULE (deprecated), see `8.3.2. Properties Registry `_ - +* Python 2 support. Use Version 0.2.0b if you need Python 2 support. + Later versions may accidentially break Python 2 programs. Installation ------------ @@ -191,6 +192,8 @@ how to go about it. Changelog --------- +- v1.0.0b + - Remove Python 2 support, see `Issue 64 `_. - v0.2.0b - Add ability to keep the recurrence attributes (RRULE, RDATE, EXDATE) on the event copies instead of stripping them. See `Pull Request 54 `_. - v0.1.21b diff --git a/setup.py b/setup.py index af4ece9..05d5d9a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ HERE = os.path.abspath(os.path.dirname(__file__)) sys.path.insert(0, HERE) # for package import -__version__ = "0.2.0b" +__version__ = "1.0.0b" __author__ = 'Nicco Kunzmann'