Skip to content

Commit

Permalink
Bump version to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhill committed Dec 5, 2019
1 parent 730d8c7 commit f11afe2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion confluent_kafka/src/confluent_kafka.c
Expand Up @@ -2193,7 +2193,7 @@ static PyObject *libversion (PyObject *self, PyObject *args) {
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
*/
static PyObject *version (PyObject *self, PyObject *args) {
return Py_BuildValue("si", "1.2.2", 0x01020200);
return Py_BuildValue("si", "1.3.0", 0x01030000);
}

static PyMethodDef cimpl_methods[] = {
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2.2'
version = '1.3.0'
# The full version, including alpha/beta/rc tags.
release = '1.2.2'
release = '1.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -52,7 +52,7 @@ def get_install_requirements(path):


setup(name='confluent-kafka',
version='1.2.2',
version='1.3.0',
description='Confluent\'s Python client for Apache Kafka',
author='Confluent Inc',
author_email='support@confluent.io',
Expand Down

0 comments on commit f11afe2

Please sign in to comment.