Skip to content

Commit 7ddaaa6

Browse files
committed
Bump version 3.7.3
1 parent 9caad83 commit 7ddaaa6

6 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
This file documents any relevant changes done to ViUR-core since version 3.
44

5+
## [3.7.3]
6+
7+
- fix: Check for preflight requests in closed_systems (#1382)
8+
- fix: Email methods has been renamed (#1395)
9+
- fix: Improve and standardize `Script` module `vfuncs` (#1388)
10+
- fix: Improve error reporting for unknown `RelationalBone` kinds (#1393)
11+
- fix: Remove overwriting `action` from `@deprecated` decorator (#1389)
12+
- fix: Use variable instead of custom name joining for public bucket (#1397)
13+
- refactor: `RelationalBone.refresh()` (#1392)
14+
515
## [3.7.2]
616

717
- feat: Provide `add_or_edit` root-only endpoint for importers (#1380)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ In case you have appropriate permissions, a release can be done this way:
116116
`viur-core` has currently 4 actively maintained branches.
117117

118118
- 1. **3.5** is the current stable LTS version as released on PyPI (3.5.x)
119-
- 2. **3.6** is the current stable version as released on PyPI (3.6.x)
119+
- 2. **3.6** is the current stable LTS version as released on PyPI (3.6.x)
120120
- 3. **main** is the current version as released on PyPI (3.7.x)
121121
- 4. **develop** is the next minor version and may be released as release candidates to PyPI (3.8.x)
122122

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2024 Mausbrand Informationssysteme GmbH
1+
Copyright © 2025 Mausbrand Informationssysteme GmbH
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ See our [contribution guidelines](CONTRIBUTING.md) for details.
4343

4444
## License
4545

46-
Copyright © 2024 by Mausbrand Informationssysteme GmbH.<br>
46+
Copyright © 2025 by Mausbrand Informationssysteme GmbH.<br>
4747
Mausbrand and ViUR are registered trademarks of Mausbrand Informationssysteme GmbH.
4848

4949
Licensed under the MIT license. See LICENSE for more information.

src/viur/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
ViUR-core
3-
Copyright © 2024 Mausbrand Informationssysteme GmbH
3+
Copyright © 2025 Mausbrand Informationssysteme GmbH
44
55
https://core.docs.viur.dev
66
Licensed under the MIT license. See LICENSE for more information.

src/viur/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This will mark it as a pre-release as well on PyPI.
44
# See CONTRIBUTING.md for further information.
55

6-
__version__ = "3.7.2"
6+
__version__ = "3.7.3"
77

88
assert __version__.count(".") >= 2 and "".join(__version__.split(".", 3)[:3]).isdigit(), \
99
"Semantic __version__ expected!"

0 commit comments

Comments
 (0)