diff --git a/CHANGELOG.md b/CHANGELOG.md index 7426b8e..ed096b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Python PEP 440 Versioning](https://www.python.org/dev/peps/pep-0440/). +## [0.11.3.post1] - 2019-02-11 + +### Fixed +- Fixed Issue [#036](https://github.com/RDFLib/pySHACL/issues/36) + +### Added +- Added test for [#036](https://github.com/RDFLib/pySHACL/issues/36) + +### Changed +- Nodes defined as TargetNode by a SHACL Shape no longer is required to be present in the DataGraph. + +### Announcement +- **This is the final version with Python v3.5 support** + - Versions 0.12.0 and above will have newer package management and dependency management, and will + require Python v3.6+. + + ## [0.11.3] - 2019-21-10 ### Fixed @@ -22,11 +39,6 @@ and this project adheres to [Python PEP 440 Versioning](https://www.python.org/d - This necessary workaround was exposed only after changing the blank node stringification above. (Fixing one bug exposed another bug!) -### Announcement -- **This is the final version with Python v3.5 support** - - Versions 0.12.0 and above will have newer package management and dependency management, and will - require Python v3.6+. - ## [0.11.2] - 2019-17-10 @@ -474,7 +486,8 @@ just leaves the files open. Now it is up to the command-line client to close the - Initial version, limited functionality -[Unreleased]: https://github.com/RDFLib/pySHACL/compare/v0.11.3...HEAD +[Unreleased]: https://github.com/RDFLib/pySHACL/compare/v0.11.3.post1...HEAD +[0.11.3.post1]: https://github.com/RDFLib/pySHACL/compare/v0.11.3...v0.11.3.post1 [0.11.3]: https://github.com/RDFLib/pySHACL/compare/v0.11.2...v0.11.3 [0.11.2]: https://github.com/RDFLib/pySHACL/compare/v0.11.1.post1...v0.11.2 [0.11.1.post1]: https://github.com/RDFLib/pySHACL/compare/v0.11.1...v0.11.1.post1 diff --git a/pyshacl/__init__.py b/pyshacl/__init__.py index d9ac297..7bc65d0 100644 --- a/pyshacl/__init__.py +++ b/pyshacl/__init__.py @@ -3,6 +3,6 @@ from pyshacl.validate import validate, Validator # version compliant with https://www.python.org/dev/peps/pep-0440/ -__version__ = '0.11.3' +__version__ = '0.11.3.post1' __all__ = ['validate', 'Validator', '__version__']