Skip to content

Commit 01092ff

Browse files
(c) year bumps
1 parent f70f79b commit 01092ff

File tree

658 files changed

+679
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

658 files changed

+679
-679
lines changed

LICENSE-APACHE2

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright [yyyy] [name of copyright owner]
190+
Copyright 2007-2024 Broadcom. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ RabbitMQ server is [licensed under the MPL 2.0](LICENSE-MPL-RabbitMQ).
7878

7979
## Copyright
8080

81-
(c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
81+
(c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.

SERVER_RELEASES.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ server releases. It is organized in the following way:
1717
* To create a source archive and all supported packages, with a given version:
1818
1919
```
20-
make packages PROJECT_VERSION=3.8.1-rc.1
20+
make packages PROJECT_VERSION=3.13.0-rc.3
2121
```
2222
2323
* To create all suported packages from an existing source archive:
2424
2525
```
26-
make -C packaging SOURCE_DIST_FILE=/path/to/rabbitmq-server-3.8.1-rc.1.tar.xz
26+
make -C packaging SOURCE_DIST_FILE=/path/to/rabbitmq-server-3.13.0-rc.3.tar.xz
2727
```
2828
2929
The standalone package is different because it embeds the build
@@ -35,7 +35,7 @@ build host:
3535
```
3636
make package-standalone-macosx
3737
# or
38-
make -C packaging package-standalone-macosx SOURCE_DIST_FILE=/path/to/rabbitmq-server-3.8.1-rc.1.tar.xz
38+
make -C packaging package-standalone-macosx SOURCE_DIST_FILE=/path/to/rabbitmq-server-3.13.0-rc.3.tar.xz
3939
```
4040
4141
The instructions in the [`PKG_LINUX.md`](PKG_LINUX.md) document include a
@@ -57,7 +57,7 @@ based on the last tag and the current HEAD.
5757
5858
Here is an example with an explicit version:
5959
```
60-
make source-dist PROJECT_VERSION=3.8.1-rc.1
60+
make source-dist PROJECT_VERSION=3.13.0-rc.3
6161
```
6262
6363
The version is automatically propagated to the broker and plugins so
@@ -66,7 +66,7 @@ they all advertise the same version.
6666
The result is then available in the `PACKAGES` subdirectory. You can
6767
override the output directory with the `PACKAGES_DIR` variable:
6868
```
69-
make source-dist PROJDCT_VERSION=3.8.1-rc.1 \
69+
make source-dist PROJDCT_VERSION=3.13.0-rc.3 \
7070
PACKAGES_DIR=/tmp
7171
```
7272
@@ -77,7 +77,7 @@ By default, two archives are produced:
7777
You can ask for more/different types by specifying the
7878
`SOURCE_DIST_SUFFIXES` variable:
7979
```
80-
make source-dist PROJECT_VERSION=3.8.1-rc.1 \
80+
make source-dist PROJECT_VERSION=3.13.0-rc.3 \
8181
SOURCE_DIST_SUFFIXES='tar.xz tar.gz'
8282
```
8383
@@ -95,7 +95,7 @@ list of plugins is in the `plugins.mk` file.
9595
You can override this list by setting the `PLUGINS` variable to the list
9696
you want:
9797
```
98-
make source-dist PROJECT_VERSION=3.8.1-rc.1 \
98+
make source-dist PROJECT_VERSION=3.13.0-rc.3 \
9999
PLUGINS='rabbitmq_shovel rabbitmq_rabbitmq_shovel_management'
100100
```
101101
@@ -122,7 +122,7 @@ This has the following rules:
122122
If you want the source archive to be created automatically, use the
123123
top-level `Makefile`:
124124
```
125-
make package-$type PROJECT_VERSION=3.8.1-rc.1 ...
125+
make package-$type PROJECT_VERSION=3.13.0-rc.3 ...
126126
```
127127
128128
Packages are written to `PACKAGES_DIR`, like the source archive.
@@ -146,7 +146,7 @@ with the `VERSION` variable:
146146
```
147147
make -C packaging package-generic-unix \
148148
SOURCE_DIST_FILE=rabbitmq-server.tar.xz \
149-
VERSION=3.8.1-rc.1
149+
VERSION=3.13.0-rc.3
150150
```
151151
152152
### Debian package
@@ -166,18 +166,18 @@ with the `VERSION` variable:
166166
```
167167
make -C packaging package-deb \
168168
SOURCE_DIST_FILE=rabbitmq-server.tar.xz \
169-
VERSION=3.8.1-rc.1
169+
VERSION=3.13.0-rc.3
170170
```
171171
172172
By default, the package version is converted from `VERSION` with
173-
all `-` characters replaced by `~` (eg. `3.8.1~rc.1` in the example
173+
all `-` characters replaced by `~` (eg. `3.13.0~rc.1` in the example
174174
above). If you want to override that conversion, you can specify the
175175
`DEBIAN_VERSION` variable:
176176
```
177177
make -C packaging package-deb \
178178
SOURCE_DIST_FILE=rabbitmq-server.tar.xz \
179-
VERSION=3.8.1-rc.1
180-
DEBIAN_VERSION=3.8.1~rc.1
179+
VERSION=3.13.0-rc.3
180+
DEBIAN_VERSION=3.13.0~rc.1
181181
```
182182
183183
### RPM package
@@ -242,12 +242,12 @@ make -C packaging/windows-exe ZIP=/path/to/rabbitmq-server-windows.zip
242242
243243
By default, the *product version* is the project version where
244244
everything following the third integer was replaced by `.0`. Thus it's
245-
only fine if the version is a semver-based version (eg. 3.8.1-pre.3 or
245+
only fine if the version is a semver-based version (eg. 3.13.0-pre.3 or
246246
3.8.2). If the version doesn't conform to that, you need to set the
247247
`PRODUCT_VERSION` variable:
248248
249249
```
250-
make package-windows PROJECT_VERSION=3.8.1-rc.1 PRODUCT_VERSION=3.8.1.0
250+
make package-windows PROJECT_VERSION=3.13.0-rc.3 PRODUCT_VERSION=3.13.0.0
251251
```
252252
253253
To build the Windows package using a Windows machine, follow the
@@ -297,8 +297,8 @@ However, be careful with the versioning! Because all package have
297297
incompatible requirements, you can only use a version with 3 integers
298298
(like a final semver-based version):
299299
```
300-
make packages PROJECT_VERSION=3.8.1
301-
make -C packaging packages SOURCE_DIST_FILE=rabbitmq-server-3.8.1.tar.xz
300+
make packages PROJECT_VERSION=3.13.0
301+
make -C packaging packages SOURCE_DIST_FILE=rabbitmq-server-3.13.0.tar.xz
302302
```
303303
304304
If you do not follow that rule, the build will fail one way or another;
@@ -309,5 +309,5 @@ Another possibility is to specify the Windows *product version* and
309309
rely on automatic conversion for Debian and RPM packages (or use the
310310
`DEBIAN_VERSION` and `RPM_VERSION` variables), but this is untested:
311311
```
312-
make packages PROJECT_VERSION=3.8.1-rc.1 PRODUCT_VERSION=3.8.1.0
312+
make packages PROJECT_VERSION=3.13.0-rc.3 PRODUCT_VERSION=3.13.0.0
313313
```

deps/amqp10_client/src/amqp10_client.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_client).

deps/amqp10_client/src/amqp10_client_app.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_client_app).

deps/amqp10_client/src/amqp10_client_connection.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_client_connection).

deps/amqp10_client/src/amqp10_client_connection_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_connection_sup).
88

deps/amqp10_client/src/amqp10_client_connections_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_connections_sup).
88

deps/amqp10_client/src/amqp10_client_frame_reader.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_frame_reader).
88

deps/amqp10_client/src/amqp10_client_session.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_session).
88

deps/amqp10_client/src/amqp10_client_sessions_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_sessions_sup).
88

deps/amqp10_client/src/amqp10_client_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_sup).
88

deps/amqp10_client/src/amqp10_client_types.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_client_types).
88

deps/amqp10_client/src/amqp10_msg.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(amqp10_msg).
88

deps/amqp10_client/test/mock_server.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77
-module(mock_server).
88

deps/amqp10_common/src/amqp10_binary_generator.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_binary_generator).

deps/amqp10_common/src/amqp10_binary_parser.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_binary_parser).

deps/amqp10_common/src/amqp10_framing.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_framing).

deps/amqp_client/src/amqp_auth_mechanisms.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_channel.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @type close_reason(Type) = {shutdown, amqp_reason(Type)}.

deps/amqp_client/src/amqp_channel_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_channel_sup_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_channels_manager.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_client.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_connection.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @type close_reason(Type) = {shutdown, amqp_reason(Type)}.

deps/amqp_client/src/amqp_connection_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_connection_type_sup.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_direct_connection.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_gen_connection.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

deps/amqp_client/src/amqp_main_reader.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
%% @private

0 commit comments

Comments
 (0)