Skip to content

Commit 34b7a74

Browse files
author
semantic-release
committed
5.0.0
Automatically generated by python-semantic-release
1 parent d7ed00f commit 34b7a74

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

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

33

44

5+
## v5.0.0 (2024-01-31)
6+
7+
### Breaking
8+
9+
* refactor: change how cfg variable in config files are initialised to make it easier to parse and less restrictive
10+
11+
BREAKING CHANGE: `cfg = CN(cfg)` is no longer allowed, use `cfg = schema.init_cfg()` or `cfg = cfg.clone()` ([`a171ed7`](https://github.com/Rizhiy/pycs/commit/a171ed77052a630f61506de212932ebe548bd5e4))
12+
13+
* refactor: change to use 'schema' as variable name for cfg schema
14+
15+
BREAKING CHANGE: Now only initialised config can be imported as cfg ([`488109e`](https://github.com/Rizhiy/pycs/commit/488109e6f197c024ba2c5106c257765139340ffd))
16+
17+
### Feature
18+
19+
* feat(utils.py): Add warning when extending config file without clone and add tests ([`6ea200d`](https://github.com/Rizhiy/pycs/commit/6ea200d88cb5b54635021bf0c0d22463f53068cc))
20+
21+
* feat(node.py): Add new_allowed as a property ([`f5d7a0c`](https://github.com/Rizhiy/pycs/commit/f5d7a0c75bbeea21aba14640080ee1f99d555342))
22+
23+
### Fix
24+
25+
* fix(pyproject.toml): Add missing isort dependency ([`d7ed00f`](https://github.com/Rizhiy/pycs/commit/d7ed00f7fa2b24f48a4d7c8c120daf29603bac52))
26+
27+
528
## v4.5.0 (2024-01-29)
629

730
### Feature

pycs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .leaf import CL
66
from .node import CN
77

8-
__version__ = "4.5.0"
8+
__version__ = "5.0.0"

0 commit comments

Comments
 (0)