Skip to content

Commit

Permalink
Bump version 3.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
phorward committed Jan 31, 2025
1 parent 9caad83 commit 7ddaaa6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ See our [contribution guidelines](CONTRIBUTING.md) for details.

## License

Copyright © 2024 by Mausbrand Informationssysteme GmbH.<br>
Copyright © 2025 by Mausbrand Informationssysteme GmbH.<br>
Mausbrand and ViUR are registered trademarks of Mausbrand Informationssysteme GmbH.

Licensed under the MIT license. See LICENSE for more information.
2 changes: 1 addition & 1 deletion src/viur/core/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/viur/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!"

0 comments on commit 7ddaaa6

Please sign in to comment.