Skip to content

Commit

Permalink
feat: Recognize additional types used by the standard repository (Qua…
Browse files Browse the repository at this point in the history
…ntity.value interval notation)
  • Loading branch information
jpmckinney committed Dec 14, 2024
1 parent 967ee58 commit dc6f8f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.6.1 (2024-12-13)
------------------

- :meth:`ocdsextensionregistry.versioned_release_schema.get_versioned_release_schema`: Recognize the type ``["number", "string", "null"]``.

0.6.0 (2024-12-13)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Open Contracting Partnership"

# The short X.Y version
version = "0.6.0"
version = "0.6.1"
# The full version, including alpha/beta/rc tags
release = version

Expand Down
1 change: 1 addition & 0 deletions ocdsextensionregistry/versioned_release_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
# Mixed
["integer", "string"],
["integer", "string", "null"],
["number", "string", "null"],
)
_KEYWORDS_TO_REMOVE = (
# Metadata keywords
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ocdsextensionregistry"
version = "0.6.0"
version = "0.6.1"
authors = [{name = "Open Contracting Partnership", email = "[email protected]"}]
description = "Eases access to information from the extension registry of the Open Contracting Data Standard"
readme = "README.rst"
Expand Down

0 comments on commit dc6f8f9

Please sign in to comment.