Skip to content

Commit 9a05ec0

Browse files
committed
Prep for v3.4.0 release
1 parent bd16529 commit 9a05ec0

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

HISTORY.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
History
22
=======
33

4-
3.4.0 (in development)
5-
----------------------
4+
3.4.0 (October 30th, 2024)
5+
--------------------------
66

77
Backwards incompatible changes:
88

@@ -20,6 +20,9 @@ Fixes and features:
2020

2121
* Fix ``autocomponentconfig`` to support components with no options. (#244)
2222

23+
* Add ``allow_empty`` option to ``ListOf`` parser that lets you specify whether
24+
empty strings are a configuration error or not. (#268)
25+
2326

2427
3.3.0 (November 6th, 2023)
2528
--------------------------

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ docs: devenv
3737
SPHINXBUILD={{sphinxbuild}} make -e -C docs/ doctest
3838
SPHINXBUILD={{sphinxbuild}} make -e -C docs/ html
3939

40+
# Build files for relase
4041
build: devenv
4142
rm -rf build/ dist/
4243
uv run python -m build
4344
uv run twine check dist/*
44-
uv run check-manifest

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "everett"
33
description = "Configuration library for Python applications"
4-
version = "3.3.0"
4+
version = "3.4.0"
55
readme = "README.rst"
66
keywords = ["conf", "config", "configuration", "ini", "env", "yaml"]
77
authors = [{name = "Will Kahn-Greene"}]
@@ -37,7 +37,6 @@ yaml = [
3737
"PyYAML",
3838
]
3939
dev = [
40-
"check-manifest",
4140
"cogapp",
4241
"mypy",
4342
"pytest",

0 commit comments

Comments
 (0)