Skip to content

Commit

Permalink
Add changelog for v0.11.3.post1. Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer committed Nov 1, 2019
1 parent 3ef5e37 commit 005f001
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
25 changes: 19 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyshacl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__']

0 comments on commit 005f001

Please sign in to comment.