diff --git a/Generate-ReleaseNotes.cmd b/Generate-ReleaseNotes.cmd index aa5866c..0db046a 100644 --- a/Generate-ReleaseNotes.cmd +++ b/Generate-ReleaseNotes.cmd @@ -1,5 +1,5 @@ rem https://github.com/StefH/GitHubReleaseNotes -SET version=1.1.3 +SET version=1.1.4 GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc wontfix --version %version% --token %GH_TOKEN% \ No newline at end of file diff --git a/ReleaseNotes.md b/ReleaseNotes.md index ff50ba2..32ed6bf 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,10 @@ +# 1.1.4 (29 November 2023) +- [#60](https://github.com/StefH/XPath2.Net/pull/60) - Add extra unit-tests for issue 59 + implement some Nullable fixes to the code [enhancement] contributed by [StefH](https://github.com/StefH) +- [#61](https://github.com/StefH/XPath2.Net/pull/61) - Add more unit tests for issue 58 [enhancement] contributed by [StefH](https://github.com/StefH) +- [#64](https://github.com/StefH/XPath2.Net/pull/64) - handle   in NormalizeStringValue() [bug] contributed by [jgilbert2017](https://github.com/jgilbert2017) +- [#66](https://github.com/StefH/XPath2.Net/pull/66) - Add unit tests for CoreFuncs.NormalizeStringValue [tests] contributed by [StefH](https://github.com/StefH) +- [#63](https://github.com/StefH/XPath2.Net/issues/63) - Missing parsing for some html-encoded entity references [bug] + # 1.1.3 (25 April 2022) - [#49](https://github.com/StefH/XPath2.Net/pull/49) - Fixed rules in XPath.y for DocumentTest and added test cases that sho… contributed by [martin-honnen](https://github.com/martin-honnen) - [#50](https://github.com/StefH/XPath2.Net/pull/50) - Add XPath2.TestRunner Project + ConsoleApp [enhancement] contributed by [StefH](https://github.com/StefH) diff --git a/src/XPath2.Extensions/XPath2.Extensions.csproj b/src/XPath2.Extensions/XPath2.Extensions.csproj index e64b12f..0c19156 100644 --- a/src/XPath2.Extensions/XPath2.Extensions.csproj +++ b/src/XPath2.Extensions/XPath2.Extensions.csproj @@ -1,7 +1,7 @@ - 1.1.3 + 1.1.4 Non-official extensions for XPath2.dll (generate-id, base64encode, base64decode, json-to-xml and json-to-xmlstring) Stef Heyenrath Non-official extensions for XPath2.dll diff --git a/src/XPath2/XPath2.csproj b/src/XPath2/XPath2.csproj index d4b7ffa..6b881f3 100644 --- a/src/XPath2/XPath2.csproj +++ b/src/XPath2/XPath2.csproj @@ -1,7 +1,7 @@ - 1.1.3 + 1.1.4 This is an implementation of W3C XML Path Language (XPath) 2.0 for .NET based on standard XPathNavigator API. Semyon A. Chertkov and Stef Heyenrath Lightweight XPath2 implementation for .NET