diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b85c7ec4..8f1b99c38 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,16 @@
This file documents any relevant changes done to ViUR-core since version 3.
+## [3.7.3]
+
+- fix: Check for preflight requests in closed_systems (#1382)
+- fix: Email methods has been renamed (#1395)
+- fix: Improve and standardize `Script` module `vfuncs` (#1388)
+- fix: Improve error reporting for unknown `RelationalBone` kinds (#1393)
+- fix: Remove overwriting `action` from `@deprecated` decorator (#1389)
+- fix: Use variable instead of custom name joining for public bucket (#1397)
+- refactor: `RelationalBone.refresh()` (#1392)
+
## [3.7.2]
- feat: Provide `add_or_edit` root-only endpoint for importers (#1380)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b0f44f1dd..3903d500c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -116,7 +116,7 @@ In case you have appropriate permissions, a release can be done this way:
`viur-core` has currently 4 actively maintained branches.
- 1. **3.5** is the current stable LTS version as released on PyPI (3.5.x)
-- 2. **3.6** is the current stable version as released on PyPI (3.6.x)
+- 2. **3.6** is the current stable LTS version as released on PyPI (3.6.x)
- 3. **main** is the current version as released on PyPI (3.7.x)
- 4. **develop** is the next minor version and may be released as release candidates to PyPI (3.8.x)
diff --git a/LICENSE b/LICENSE
index 9baf04466..c4d7b30c2 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright © 2024 Mausbrand Informationssysteme GmbH
+Copyright © 2025 Mausbrand Informationssysteme GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index e640bb986..fe6096fd5 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ See our [contribution guidelines](CONTRIBUTING.md) for details.
## License
-Copyright © 2024 by Mausbrand Informationssysteme GmbH.
+Copyright © 2025 by Mausbrand Informationssysteme GmbH.
Mausbrand and ViUR are registered trademarks of Mausbrand Informationssysteme GmbH.
Licensed under the MIT license. See LICENSE for more information.
diff --git a/src/viur/core/__init__.py b/src/viur/core/__init__.py
index c171ee775..6085cda4f 100644
--- a/src/viur/core/__init__.py
+++ b/src/viur/core/__init__.py
@@ -1,6 +1,6 @@
"""
ViUR-core
-Copyright © 2024 Mausbrand Informationssysteme GmbH
+Copyright © 2025 Mausbrand Informationssysteme GmbH
https://core.docs.viur.dev
Licensed under the MIT license. See LICENSE for more information.
diff --git a/src/viur/core/version.py b/src/viur/core/version.py
index 26b0b7a1b..f71ff26a4 100644
--- a/src/viur/core/version.py
+++ b/src/viur/core/version.py
@@ -3,7 +3,7 @@
# This will mark it as a pre-release as well on PyPI.
# See CONTRIBUTING.md for further information.
-__version__ = "3.7.2"
+__version__ = "3.7.3"
assert __version__.count(".") >= 2 and "".join(__version__.split(".", 3)[:3]).isdigit(), \
"Semantic __version__ expected!"