Skip to content

Commit f6bd8d5

Browse files
committed
Publish 5.14.0
SHA256 hashes: traitlets-5.14.0-py3-none-any.whl: f14949d23829023013c47df20b4a76ccd1a85effb786dc060f34de7948361b33 traitlets-5.14.0.tar.gz: fcdaa8ac49c04dfa0ed3ee3384ef6dfdb5d6f3741502be247279407679296772
1 parent 4d75046 commit f6bd8d5

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

CHANGELOG.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 5.14.0
6+
7+
([Full Changelog](https://github.com/ipython/traitlets/compare/v5.13.0...4d7504601b9db9eb6f31dfc102b9c469c8517496))
8+
9+
### Enhancements made
10+
11+
- Add option to load traitlets values from environement. [#856](https://github.com/ipython/traitlets/pull/856) ([@Carreau](https://github.com/Carreau))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Update types for mypy 1.7 [#892](https://github.com/ipython/traitlets/pull/892) ([@blink1073](https://github.com/blink1073))
16+
- chore: update pre-commit hooks [#890](https://github.com/ipython/traitlets/pull/890) ([@pre-commit-ci](https://github.com/pre-commit-ci))
17+
- Clean up lint handling [#888](https://github.com/ipython/traitlets/pull/888) ([@blink1073](https://github.com/blink1073))
18+
19+
### Contributors to this release
20+
21+
([GitHub contributors page for this release](https://github.com/ipython/traitlets/graphs/contributors?from=2023-10-30&to=2023-11-27&type=c))
22+
23+
[@blink1073](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Ablink1073+updated%3A2023-10-30..2023-11-27&type=Issues) | [@Carreau](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3ACarreau+updated%3A2023-10-30..2023-11-27&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Apre-commit-ci+updated%3A2023-10-30..2023-11-27&type=Issues)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
527
## 5.13.0
628

729
([Full Changelog](https://github.com/ipython/traitlets/compare/v5.12.0...dacbf9b03ebecbd09604ab2fa41e088e3f60b403))
@@ -21,8 +43,6 @@
2143

2244
[@blink1073](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Ablink1073+updated%3A2023-10-25..2023-10-30&type=Issues) | [@kylebarron](https://github.com/search?q=repo%3Aipython%2Ftraitlets+involves%3Akylebarron+updated%3A2023-10-25..2023-10-30&type=Issues)
2345

24-
<!-- <END NEW CHANGELOG ENTRY> -->
25-
2646
## 5.12.0
2747

2848
([Full Changelog](https://github.com/ipython/traitlets/compare/v5.11.2...b018581f0acd75844bbd7584e233c3ab3126501b))

traitlets/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from typing import List
66

77
# Version string must appear intact for hatch versioning
8-
__version__ = "5.13.0"
8+
__version__ = "5.14.0"
99

1010
# Build up version_info tuple for backwards compatibility
1111
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"

0 commit comments

Comments
 (0)