Skip to content

Commit a34bd46

Browse files
committed
Bump broker version to 4.0.x
1 parent f72e77e commit a34bd46

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

Diff for: MODULE.bazel

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "rabbitmq_delayed_message_exchange",
3-
version = "3.13.0",
3+
version = "4.0.0",
44
)
55

66
bazel_dep(
@@ -27,14 +27,14 @@ use_repo(
2727

2828
bazel_dep(
2929
name = "rabbitmq-server",
30-
version = "3.13.0",
30+
version = "4.0.0",
3131
)
3232

3333
archive_override(
3434
module_name = "rabbitmq-server",
35-
strip_prefix = "rabbitmq-server-main",
35+
strip_prefix = "rabbitmq-server-4.0.x",
3636
urls = [
37-
"https://github.com/rabbitmq/rabbitmq-server/archive/refs/heads/main.zip",
37+
"https://github.com/rabbitmq/rabbitmq-server/archive/refs/heads/v4.0.x.zip",
3838
],
3939
)
4040

Diff for: Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ PROJECT = rabbitmq_delayed_message_exchange
22
PROJECT_DESCRIPTION = RabbitMQ Delayed Message Exchange
33
PROJECT_MOD = rabbit_delayed_message_app
44

5-
RABBITMQ_VERSION ?= v3.13.x
5+
RABBITMQ_VERSION ?= v4.0.x
6+
current_rmq_ref = $(RABBITMQ_VERSION)
67

78
define PROJECT_APP_EXTRA_KEYS
8-
{broker_version_requirements, ["3.13.0"]}
9+
{broker_version_requirements, ["4.0.0"]}
910
endef
1011

1112
dep_amqp_client = git_rmq-subfolder rabbitmq-erlang-client $(RABBITMQ_VERSION)

Diff for: README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ of some kind.
3131

3232
## Supported RabbitMQ Versions
3333

34-
The most recent release of this plugin targets RabbitMQ 3.13.x.
34+
The most recent release of this plugin targets RabbitMQ 4.0.x.
35+
36+
This plugin currently only supports Mnesia for metadata store (do not use it with Khepri).
3537

3638
## Supported Erlang/OTP Versions
3739

38-
The latest version of this plugin [requires Erlang 26.0 or later versions](https://www.rabbitmq.com/which-erlang.html), same as RabbitMQ 3.13.x.
40+
The latest version of this plugin [requires Erlang 26.2 or later versions](https://www.rabbitmq.com/which-erlang.html), same as RabbitMQ 4.0.x.
3941

4042
## Project Maturity
4143

@@ -199,7 +201,7 @@ The EZ file is created in the `bazel-bin` directory.
199201

200202
1. Update `broker_version_requirements` in `helpers.bzl` & `Makefile` (Optional)
201203
1. Update the plugin version in `MODULE.bazel`
202-
1. Push a tag (i.e. `v3.13.0`) with the matching version
204+
1. Push a tag (i.e. `v4.0.0`) with the matching version
203205
1. Allow the Release workflow to run and create a draft release
204206
1. Review and publish the release
205207

Diff for: helpers.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
load("@rules_erlang//:ct.bzl", "ct_test")
22

3-
BROKER_VERSION_REQUIREMENTS_TERM = """{broker_version_requirements, ["3.13.0"]}"""
3+
BROKER_VERSION_REQUIREMENTS_TERM = """{broker_version_requirements, ["4.0.0"]}"""
44

55
def rabbitmq_suite(
66
name = None,

0 commit comments

Comments
 (0)