summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobixen@gmail.com>2013-09-24 22:04:45 +0200
committerTobias Brox <tobixen@gmail.com>2013-09-24 22:04:45 +0200
commitdbd1a4051e5a35e597d17f73195e1d949f49023d (patch)
treed1fdb8b096a91fc6772e57a5c159704ae022e17c
parent9075e3b48757bd5ba488e0166786c1531d970864 (diff)
downloadcalendar-cli-dbd1a4051e5a35e597d17f73195e1d949f49023d.zip
rearranging the milestones; TODO-items will have to wait since the icalendar.py doesn't have much support for it; bumping version number to 0.01
-rw-r--r--README.md7
-rwxr-xr-xcalendar-cli.py2
2 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index e3b5a44..aaa05a6 100644
--- a/README.md
+++ b/README.md
@@ -70,14 +70,15 @@ Objectives
Milestones
----------
-* CLI-interface for creating ical calendar events (scheduled for version 0.01)
-* CLI-interface for creating ical calendar events (scheduled for version 0.03)
+* CLI-interface for creating ical calendar events (working as of version 0.01)
+* Push calendar item into CalDAV server
* Config file with CalDAV connection details
* CalDAV login
-* Push calendar item into CalDAV server
+* CLI-interface for creating ical todo events
* Push todo item into CalDAV server
Status
------
2013-09-15: Made a repository at github and wrote up this README.
+2013-09-24: version 0.01 - supports creating an ical-file based on command line parameters \ No newline at end of file
diff --git a/calendar-cli.py b/calendar-cli.py
index f1462df..79814f7 100755
--- a/calendar-cli.py
+++ b/calendar-cli.py
@@ -8,7 +8,7 @@ from datetime import datetime, timedelta
import dateutil.parser
from icalendar import Calendar,Event
-__version__ = "0.003"
+__version__ = "0.01"
__author__ = "Tobias Brox"
__author_short__ = "tobixen"
__copyright__ = "Copyright 2013, Tobias Brox"