Skip to content

Commit

Permalink
ci: ready to release 1.0.0-rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Curtis Wan <[email protected]>
  • Loading branch information
mooc9988 committed Dec 16, 2023
1 parent f9c10d4 commit 67c929a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
controller:
container_name: "${CONTROLLER_DOCKER_NAME-controller}"
hostname: "${CONTROLLER_DOCKER_NAME-controller}"
image: automqinc/kafka:1.0.0-rc0
image: automqinc/kafka:1.0.0-rc1
environment:
- KAFKA_S3_ACCESS_KEY=test
- KAFKA_S3_SECRET_KEY=test
Expand All @@ -67,7 +67,7 @@ services:
broker1:
container_name: "${BROKER1_DOCKER_NAME-broker1}"
hostname: "${BROKER1_DOCKER_NAME-broker1}"
image: automqinc/kafka:1.0.0-rc0
image: automqinc/kafka:1.0.0-rc1
ports:
- "9094:9094"
environment:
Expand All @@ -92,7 +92,7 @@ services:
broker2:
container_name: "${BROKER2_DOCKER_NAME-broker2}"
hostname: "${BROKER2_DOCKER_NAME-broker2}"
image: automqinc/kafka:1.0.0-rc0
image: automqinc/kafka:1.0.0-rc1
ports:
- "9095:9095"
environment:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ group=org.apache.kafka
# - tests/kafkatest/__init__.py
# - tests/kafkatest/version.py (variable DEV_VERSION)
# - kafka-merge-pr.py
version=1.0.0-rc0
version=1.0.0-rc1
scalaVersion=2.13.10
task=build
org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC
Expand Down
2 changes: 1 addition & 1 deletion tests/kafkatest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# Instead, in development branches, the version should have a suffix of the form ".devN"
#
# For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0.dev0"
__version__ = '1.0.0-rc0'
__version__ = '1.0.0-rc1'
2 changes: 1 addition & 1 deletion tests/kafkatest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def get_version(node=None):
return DEV_BRANCH

DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("1.0.0-rc0-SNAPSHOT")
DEV_VERSION = KafkaVersion("1.0.0-rc1-SNAPSHOT")

LATEST_METADATA_VERSION = "3.3"

Expand Down

0 comments on commit 67c929a

Please sign in to comment.