Skip to content

Commit

Permalink
Release v2.6.1 (#1855)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavrth authored Nov 18, 2024
1 parent a29ecb9 commit 0e5706b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ execution_time_limit:
global_job_config:
env_vars:
- name: LIBRDKAFKA_VERSION
value: v2.6.1-RC2
value: v2.6.1
prologue:
commands:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# built documents.
#
# The short X.Y version.
version = '2.6.1rc2'
version = '2.6.1'
# The full version, including alpha/beta/rc tags.
release = version
######################################################################
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FROM alpine:3.12

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

ENV LIBRDKAFKA_VERSION v2.6.1-RC2
ENV LIBRDKAFKA_VERSION v2.6.1
ENV KAFKACAT_VERSION master


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "confluent-kafka"
version = "2.6.1rc2"
version = "2.6.1"
description = "Confluent's Python client for Apache Kafka"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/confluent_kafka/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
*/
#define CFL_VERSION 0x02060100
#define CFL_VERSION_STR "2.6.1rc2"
#define CFL_VERSION_STR "2.6.1"

/**
* Minimum required librdkafka version. This is checked both during
Expand Down
4 changes: 2 additions & 2 deletions tools/smoketest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ for py in 3.9 ; do

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

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

popd # $testdir/tests
popd # $testdir
done

if [[ -z $pyvers_tested ]]; then
Expand Down

0 comments on commit 0e5706b

Please sign in to comment.