summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Geier <geier@lostpackets.de>2014-04-03 00:19:07 +0200
committerChristian Geier <geier@lostpackets.de>2014-04-03 00:19:07 +0200
commit97d26f44ea937a14d5f64cfeab2aacfe71474d20 (patch)
treed73bd29771359147fc53e87fb5f074c3ae34e9d4
parentf1ce513a57a0b27d5a2743985c0afd4a75e2f526 (diff)
release v0.1.0v0.1.0
-rw-r--r--MANIFEST.in7
-rw-r--r--NEWS.txt7
-rw-r--r--doc/webpage/src/khal01.rst18
-rw-r--r--doc/webpage/src/pages/faq.rst23
-rw-r--r--setup.py8
5 files changed, 59 insertions, 4 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 00000000..afc014bb
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,7 @@
+khal.conf.sample
+include README.rst
+include CONTRIBUTING.txt
+include CONTRIBUTORS.txt
+include COPYING
+include NEWS.txt
+include misc/__khal
diff --git a/NEWS.txt b/NEWS.txt
new file mode 100644
index 00000000..f87a6715
--- /dev/null
+++ b/NEWS.txt
@@ -0,0 +1,7 @@
+03.04.2014: khal v0.1 released
+ The first release of khal is here: khal v0.1.0(and also available on
+ pypi now).
+
+ The next release, hopefully coming rather sooner than later, will get
+ rid of its own CalDAV implementation, but instead use vdirsyncer; you
+ can already try it out via checking out the branch *vdir* at github.
diff --git a/doc/webpage/src/khal01.rst b/doc/webpage/src/khal01.rst
new file mode 100644
index 00000000..32909f23
--- /dev/null
+++ b/doc/webpage/src/khal01.rst
@@ -0,0 +1,18 @@
+khal v0.1 released
+==================
+:date: 03.04.2014
+:category: News
+:tags: Releases
+
+The first release of khal is here: `khal v0.1.0`__ (and also available on pypi_
+now).
+
+__ https://lostpackets.de/khal/downloads/khal-0.1.0.tar.gz
+
+The next release, hopefully coming rather sooner than later, will get rid of its
+own CalDAV implementation, but instead use vdirsyncer_; you can
+already try it out via checking out the branch *vdir* at github_.
+
+.. _pypi: https://pypi.python.org/khal/
+.. _vdirsyncer: https://github.com/untitaker/vdirsyncer/
+.. _github: https://github.com/geier/khal/tree/vdir
diff --git a/doc/webpage/src/pages/faq.rst b/doc/webpage/src/pages/faq.rst
new file mode 100644
index 00000000..14cc76c3
--- /dev/null
+++ b/doc/webpage/src/pages/faq.rst
@@ -0,0 +1,23 @@
+Frequently Asked Questions (FAQ)
+================================
+
+
+* **during sync an exception is raised: [Errno 185090050] _ssl.c:343: error:0B084002:x509 certificate routines:X509_load_cert_crl_file:system lib**
+ khal cannot find the path to your certificate bundle, you need to supply it as a
+ parameter to `ssl_verify` in your config file, e.g.
+ `ssl_verify: /usr/share/ca-certificates/cacert.org/cacert.org_root.crt`.
+
+* **ikhal raises an Exception: AttributeError: 'module' object has no attribute 'SimpleFocusListWalker'**
+ You probably need to upgrade urwid to version 1.1.0, if your OS does come with
+ an older version of *urwid* you can install the latest version to userspace
+ (with out messing up your default installation) with `pip install --upgrade urwid --user`.
+
+
+* **Installation stops with an error: source/str_util.c:25:20: fatal error: Python.h: No such file or directory**
+ You do not have the Python development headers installed, on Debian based
+ Distributions you can install them via *aptitude install python-dev*.
+
+
+* **During sync an error occurs: TypeError: request() got an unexpected keyword argument 'verify'**
+ You need to update your version of `requests`.
+
diff --git a/setup.py b/setup.py
index c0084828..c66f1db0 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ MAJOR = 0
MINOR = 1
PATCH = 0
-RELEASE = False
+RELEASE = True
VERSION = "{0}.{1}.{2}".format(MAJOR, MINOR, PATCH)
@@ -80,15 +80,15 @@ setup(
packages=['khal', 'khal/ui'],
scripts=['bin/khal', 'bin/ikhal'],
requires=requirements,
- extras_require = extra_requirements,
+ extras_require=extra_requirements,
classifiers=[
- "Development Status :: 1 - Planning"
+ "Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Utilities",
- "Topic :: Communications :: Email :: Address Book"
+ "Topic :: Office/Business :: Scheduling"
],
)