Skip to content

Release v2.6.1 #1855

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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