prepare next version

pull/120/merge
Johannes Raggam 2014-01-06 16:17:26 +01:00
rodzic b29d687691
commit c5d329cb7d
3 zmienionych plików z 24 dodań i 30 usunięć

Wyświetl plik

@ -2,9 +2,13 @@
Changelog
=========
4.0.dev (unreleased)
3.6.dev (unreleased)
--------------------
- Python3 (3.3+) + Python 2 (2.6+) support [geier]
- Made sure to_ical() always returns bytes [geier]
- Support adding lists to a component property, which value already was a list
and remove the Component.set method, which was only used by the add method.
[thet]
@ -26,10 +30,6 @@ Changelog
when parsed from ical strings.
[untitaker]
- Python3 (3.3+) support [geier]
- Made sure to_ical() always returns bytes [geier]
3.5 (2013-07-03)
----------------

Wyświetl plik

@ -17,6 +17,15 @@ with Python.
----
Roadmap
=======
- 3.6: Python 3 support (current version)
- 4.0: API refactoring
Changes in version 3.0
======================
@ -47,21 +56,6 @@ which are not defined in the Olson database.
Instead of the own UTC tzinfo implementation we use pytz UTC tzinfo object now.
Roadmap
=======
1) Internally Unicode will be used exclusively.
2) On API Functions, accept or return Unicode or en/decoded strings.
3) This will make the 3.4 Release.
4) API change: API calls also only accept/return Unicode.
5) This will make the 4.0 release.
About this fork which is not a fork anymore
===========================================
@ -89,14 +83,14 @@ Output from coverage test::
Name Stmts Miss Cover
----------------------------------------------------------------------------------
.tox/py33/lib/python3.3/site-packages/icalendar/__init__ 5 0 100%
.tox/py33/lib/python3.3/site-packages/icalendar/cal 227 9 96%
.tox/py33/lib/python3.3/site-packages/icalendar/caselessdict 55 5 91%
.tox/py33/lib/python3.3/site-packages/icalendar/compat 1 0 100%
.tox/py33/lib/python3.3/site-packages/icalendar/parser 189 8 96%
.tox/py33/lib/python3.3/site-packages/icalendar/parser_tools 20 0 100%
.tox/py33/lib/python3.3/site-packages/icalendar/prop 533 62 88%
.tox/py33/lib/python3.3/site-packages/icalendar/tools 16 0 100%
.tox/py27/lib/python2.7/site-packages/icalendar/__init__ 5 0 100%
.tox/py27/lib/python2.7/site-packages/icalendar/cal 234 7 97%
.tox/py27/lib/python2.7/site-packages/icalendar/caselessdict 55 5 91%
.tox/py27/lib/python2.7/site-packages/icalendar/compat 1 0 100%
.tox/py27/lib/python2.7/site-packages/icalendar/parser 189 6 97%
.tox/py27/lib/python2.7/site-packages/icalendar/parser_tools 20 0 100%
.tox/py27/lib/python2.7/site-packages/icalendar/prop 533 62 88%
.tox/py27/lib/python2.7/site-packages/icalendar/tools 16 0 100%
----------------------------------------------------------------------------------
TOTAL 1046 84 92%
TOTAL 1053 80 92%

Wyświetl plik

@ -1,7 +1,7 @@
import setuptools
import sys
version = '4.0.dev'
version = '3.6.dev'
shortdesc = 'iCalendar parser/generator'
longdesc = open('README.rst').read()
longdesc += open('CHANGES.rst').read()