Skip to content

Commit

Permalink
release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
geier committed Apr 2, 2014
1 parent f1ce513 commit 97d26f4
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 4 deletions.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
khal.conf.sample
include README.rst
include CONTRIBUTING.txt
include CONTRIBUTORS.txt
include COPYING
include NEWS.txt
include misc/__khal
7 changes: 7 additions & 0 deletions NEWS.txt
Original file line number Diff line number Diff line change
@@ -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.
18 changes: 18 additions & 0 deletions doc/webpage/src/khal01.rst
Original file line number Diff line number Diff line change
@@ -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
23 changes: 23 additions & 0 deletions doc/webpage/src/pages/faq.rst
Original file line number Diff line number Diff line change
@@ -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`.

8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
MINOR = 1
PATCH = 0

RELEASE = False
RELEASE = True

VERSION = "{0}.{1}.{2}".format(MAJOR, MINOR, PATCH)

Expand Down Expand Up @@ -80,15 +80,15 @@ def write_version():
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"
],
)

0 comments on commit 97d26f4

Please sign in to comment.