Skip to content

Commit 0b2d16d

Browse files
committed
Update version to 0.9.2
1 parent e6956a2 commit 0b2d16d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

confluent_kafka/src/confluent_kafka.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ static PyObject* KafkaError_richcompare (KafkaError *self, PyObject *o2,
164164
Py_INCREF(result);
165165
return result;
166166
}
167-
167+
168168

169169
static PyTypeObject KafkaErrorType = {
170170
PyVarObject_HEAD_INIT(NULL, 0)
@@ -560,7 +560,7 @@ static PyObject *TopicPartition_new (PyTypeObject *type, PyObject *args,
560560

561561
return TopicPartition_new0(topic, partition, offset, 0);
562562
}
563-
563+
564564

565565

566566
static int TopicPartition_traverse (TopicPartition *self,
@@ -758,7 +758,7 @@ PyObject *c_parts_to_py (const rd_kafka_topic_partition_list_t *c_parts) {
758758
}
759759

760760
return parts;
761-
761+
762762
}
763763

764764
/**
@@ -1259,7 +1259,7 @@ static PyObject *libversion (PyObject *self, PyObject *args) {
12591259
}
12601260

12611261
static PyObject *version (PyObject *self, PyObject *args) {
1262-
return Py_BuildValue("si", "0.9.1", 0x00090100);
1262+
return Py_BuildValue("si", "0.9.2", 0x00090100);
12631263
}
12641264

12651265
static PyMethodDef cimpl_methods[] = {

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '0.9.1.2'
58+
version = '0.9.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.9.1.2'
60+
release = '0.9.2'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
'confluent_kafka/src/Consumer.c'])
1212

1313
setup(name='confluent-kafka',
14-
version='0.9.1.2',
14+
version='0.9.2',
1515
description='Confluent\'s Apache Kafka client for Python',
1616
author='Confluent Inc',
1717
author_email='[email protected]',

0 commit comments

Comments
 (0)