Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
scriptconfig
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Utils
scriptconfig
Commits
51146af1
Commit
51146af1
authored
Mar 22, 2023
by
Jon Crall
Browse files
Options
Downloads
Patches
Plain Diff
Start branch for 0.7.5
parent
8d6fccaa
Loading
Loading
1 merge request
!22
Start branch for dev/0.7.5
Pipeline
#324727
passed
Mar 22, 2023
Stage: build
Stage: test
Stage: external
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+4
-1
4 additions, 1 deletion
CHANGELOG.md
scriptconfig/__init__.py
+1
-1
1 addition, 1 deletion
scriptconfig/__init__.py
scriptconfig/config.py
+2
-2
2 additions, 2 deletions
scriptconfig/config.py
with
7 additions
and
4 deletions
CHANGELOG.md
+
4
−
1
View file @
51146af1
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
scriptconfig/__init__.py
+
1
−
1
View file @
51146af1
...
...
@@ -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,
...
...
This diff is collapsed.
Click to expand it.
scriptconfig/config.py
+
2
−
2
View file @
51146af1
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment