prepare 0.600.0 release

This commit is contained in:
holger krekel
2019-07-10 16:10:23 +02:00
parent deb160cce9
commit 3bca349194
3 changed files with 7 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
0.9.1-dev
0.600.0
---------
- use new experimental full-Rust Delta Chat core
- support Autocrypt Setup Messages
- remove synchronous events
- use CircleCI for continous integration and packaging of Linux wheels
- use docker image for building wheels
- fix code documentation links

View File

@@ -8,7 +8,7 @@ def main():
setuptools.setup(
name='deltachat',
version=version,
description='Python bindings for deltachat-core using CFFI',
description='Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat',
long_description=long_description,
author='holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors',
setup_requires=['cffi>=1.0.0'],

View File

@@ -2,7 +2,7 @@ from deltachat import capi, const
from deltachat.capi import ffi
from deltachat.account import Account # noqa
__version__ = "0.10.0.dev4"
__version__ = "0.600.0"
_DC_CALLBACK_MAP = {}