Skip to content

Commit a852f69

Browse files
0.4.0 development
1 parent c20dc7c commit a852f69

File tree

4 files changed

+108
-7
lines changed

4 files changed

+108
-7
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = "JSNAC"
1010
copyright = "2024, Andrew Jones"
1111
author = "Andrew Jones"
12-
release = "0.3.0"
12+
release = "0.4.0"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

jsnac/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .core.build import SchemaBuilder
22

3-
__version__ = "0.3.0"
3+
__version__ = "0.4.0"
44
__all__ = [
55
"SchemaBuilder",
66
]

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jsnac"
7-
version = "0.3.0"
8-
description = "JSON Schema (for) Network as Code: Build JSON schemas from YAML"
7+
version = "0.4.0"
8+
description = "JSON Schema (for) Network as Code: Build JSON schemas from YANG"
99
authors = [{ name = "Andrew Jones", email = "[email protected]" }]
1010
requires-python = ">=3.11,<4.0"
1111
readme = "README.md"
@@ -16,7 +16,10 @@ classifiers = [
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
1818
]
19-
dependencies = ["pyyaml>=6.0.2,<7.0.0"]
19+
dependencies = [
20+
"pyyaml>=6.0.2,<7.0.0",
21+
"pyang>=2.7.1,<3.0.0",
22+
]
2023

2124
[project.urls]
2225
Repository = "https://github.com/commitconfirmed/jsnac"

0 commit comments

Comments
 (0)