Skip to content

Commit 50ca1d8

Browse files
committed
version bump
1 parent 49e9301 commit 50ca1d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.pyproject_generation/pyproject_custom.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "schemapack"
4-
version = "3.1.0"
4+
version = "4.0.0"
55
description = "Make your JSON Schemas sociable and create linked data model."
66
dependencies = [
77
"pydantic >=2, <3",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Intended Audience :: Developers",
2222
]
2323
name = "schemapack"
24-
version = "3.1.0"
24+
version = "4.0.0"
2525
description = "Make your JSON Schemas sociable and create linked data model."
2626
dependencies = [
2727
"pydantic >=2, <3",

src/schemapack/_internals/spec/datapack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
ResourceId,
3636
)
3737

38-
SupportedDataPackVersions = Literal["3.0.0", "3.1.0", "3.1.1"]
38+
SupportedDataPackVersions = Literal["3.0.0", "3.1.0", "4.0.0"]
3939
SUPPORTED_DATA_PACK_VERSIONS = typing.get_args(SupportedDataPackVersions)
4040

4141

src/schemapack/_internals/spec/schemapack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
)
4444
from schemapack.utils import read_json_or_yaml_mapping
4545

46-
SupportedSchemaPackVersions = Literal["3.0.0", "3.1.0", "3.1.1"]
46+
SupportedSchemaPackVersions = Literal["3.0.0", "3.1.0", "4.0.0"]
4747
SUPPORTED_SCHEMA_PACK_VERSIONS = typing.get_args(SupportedSchemaPackVersions)
4848

4949

0 commit comments

Comments
 (0)