Skip to content

Commit 0e5706b

Browse files
authored
Release v2.6.1 (confluentinc#1855)
1 parent a29ecb9 commit 0e5706b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.semaphore/semaphore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ execution_time_limit:
88
global_job_config:
99
env_vars:
1010
- name: LIBRDKAFKA_VERSION
11-
value: v2.6.1-RC2
11+
value: v2.6.1
1212
prologue:
1313
commands:
1414
- checkout

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = '2.6.1rc2'
30+
version = '2.6.1'
3131
# The full version, including alpha/beta/rc tags.
3232
release = version
3333
######################################################################

examples/docker/Dockerfile.alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ FROM alpine:3.12
3030

3131
COPY . /usr/src/confluent-kafka-python
3232

33-
ENV LIBRDKAFKA_VERSION v2.6.1-RC2
33+
ENV LIBRDKAFKA_VERSION v2.6.1
3434
ENV KAFKACAT_VERSION master
3535

3636

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "confluent-kafka"
7-
version = "2.6.1rc2"
7+
version = "2.6.1"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

src/confluent_kafka/src/confluent_kafka.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
4545
#define CFL_VERSION 0x02060100
46-
#define CFL_VERSION_STR "2.6.1rc2"
46+
#define CFL_VERSION_STR "2.6.1"
4747

4848
/**
4949
* Minimum required librdkafka version. This is checked both during

tools/smoketest.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ for py in 3.9 ; do
9191

9292
# Change to a neutral path where there is no confluent_kafka sub-directory
9393
# that might interfere with module load.
94-
pushd $testdir/tests
94+
pushd $testdir
9595
echo "$0: Running unit tests"
9696
pytest
9797

@@ -125,7 +125,7 @@ c = Consumer({"group.id": "test-linux", "plugin.library.paths": "monitoring-inte
125125
all_fails="$all_fails \[py$py: $fails\]"
126126
fi
127127

128-
popd # $testdir/tests
128+
popd # $testdir
129129
done
130130

131131
if [[ -z $pyvers_tested ]]; then

0 commit comments

Comments
 (0)