Skip to content
Snippets Groups Projects
Commit 51146af1 authored by Jon Crall's avatar Jon Crall
Browse files

Start branch for 0.7.5

parent 8d6fccaa
1 merge request!22Start branch for dev/0.7.5
Pipeline #324727 passed
......@@ -4,7 +4,10 @@ This changelog follows the specifications detailed in: [Keep a Changelog](https:
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), although we have not yet reached a `1.0.0` release.
## Version 0.7.4 - Unreleased
## Version 0.7.5 - Unreleased
## Version 0.7.4 - Released 2023-03-22
### Changed
* Reworked how the "port" functions work under the hood, and added a new one.
......
......@@ -141,7 +141,7 @@ Ignore:
mkinit ~/code/scriptconfig/scriptconfig/__init__.py --nomods --relative -w
"""
__version__ = '0.7.4'
__version__ = '0.7.5'
__submodules__ = {
'config': None,
......
......@@ -180,7 +180,7 @@ class MetaConfig(type):
ub.schedule_deprecation(
'scriptconfig', 'default', f'class attribute of {name}',
migration='Use __default__ instead',
deprecate='0.7.4', error='0.8.0', remove='0.9.0',
deprecate='0.7.5', error='0.8.0', remove='0.9.0',
)
if '__default__' in namespace and 'default' not in namespace:
......@@ -193,7 +193,7 @@ class MetaConfig(type):
ub.schedule_deprecation(
'scriptconfig', 'normalize', f'class attribute of {name}',
migration='Use __post_init__ instead',
deprecate='0.7.4', error='0.8.0', remove='0.9.0',
deprecate='0.7.5', error='0.8.0', remove='0.9.0',
)
if '__post_init__' in namespace and 'normalize' not in namespace:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment