Skip to content

Commit 570c785

Browse files
authored
Downgrad min supported OSX version to 13 (confluentinc#5219)
* Downgrade min supported OSX version to 13 * Version upgrade to v2.12.1
1 parent 18f28bc commit 570c785

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.semaphore/semaphore-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ global_job_config:
2828
# Shows plain output from docker build (no progress bars)
2929
- name: BUILDKIT_PROGRESS
3030
value: plain
31+
- name: MACOSX_DEPLOYMENT_TARGET
32+
value: '13'
3133

3234
blocks:
3335
- name: 'OSX arm64/m1'

.semaphore/semaphore.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ global_job_config:
2828
# Shows plain output from docker build (no progress bars)
2929
- name: BUILDKIT_PROGRESS
3030
value: plain
31+
- name: MACOSX_DEPLOYMENT_TARGET
32+
value: '13'
3133

3234
blocks:
3335
- name: 'OSX arm64/m1'

src-cpp/rdkafkacpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ namespace RdKafka {
112112
* @remark This value should only be used during compile time,
113113
* for runtime checks of version use RdKafka::version()
114114
*/
115-
#define RD_KAFKA_VERSION 0x020c00ff
115+
#define RD_KAFKA_VERSION 0x020c01ff
116116

117117
/**
118118
* @brief Returns the librdkafka version as integer.

src/rdkafka.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ typedef SSIZE_T ssize_t;
167167
* @remark This value should only be used during compile time,
168168
* for runtime checks of version use rd_kafka_version()
169169
*/
170-
#define RD_KAFKA_VERSION 0x020c00ff
170+
#define RD_KAFKA_VERSION 0x020c01ff
171171

172172
/**
173173
* @brief Returns the librdkafka version as integer.

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "librdkafka",
3-
"version": "2.12.0",
3+
"version": "2.12.1",
44
"dependencies": [
55
{
66
"name": "zstd",

0 commit comments

Comments
 (0)