Skip to content

Commit

Permalink
1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Mar 22, 2024
1 parent 6325dd0 commit d227923
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Generate-ReleaseNotes.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rem https://github.com/StefH/GitHubReleaseNotes

SET version=1.1.4
SET version=1.1.5

GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc wontfix --version %version% --token %GH_TOKEN%
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.1.5 (22 March 2024)
- [#67](https://github.com/StefH/XPath2.Net/pull/67) - Correct wrong context handling [bug] contributed by [cbridet](https://github.com/cbridet)
- [#7](https://github.com/StefH/XPath2.Net/issues/7) - wrong context handling [bug]

# 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)
Expand Down
3 changes: 3 additions & 0 deletions XPath2.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0C331956-D83C-4A5C-8A73-6B948ADEA559}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dependencies", "dependencies", "{813DE82D-158B-4671-A497-19863B790758}"
EndProject
Expand Down
7 changes: 7 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>
<PropertyGroup>
<Version>1.1.5</Version>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
11 changes: 2 additions & 9 deletions src/XPath2.Extensions/XPath2.Extensions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.1.4</Version>
<Description>Non-official extensions for XPath2.dll (generate-id, base64encode, base64decode, json-to-xml and json-to-xmlstring)</Description>
<Copyright>Stef Heyenrath</Copyright>
<AssemblyTitle>Non-official extensions for XPath2.dll</AssemblyTitle>
Expand All @@ -26,8 +25,6 @@
<SignAssembly>true</SignAssembly>
<ProjectGuid>{D3804228-91F4-4502-9595-39584EBB0000}</ProjectGuid>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition=" '$(buildType)' == 'azure-pipelines-ci' ">
Expand All @@ -41,8 +38,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Nullable" Version="1.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

Expand All @@ -68,23 +65,19 @@
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
<Reference Include="System" />
<Reference Include="System.Xml" />
<!--<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />-->
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<Reference Include="System" />
<Reference Include="System.Xml" />
<!--<PackageReference Include="Newtonsoft.Json" Version="6.0.8" />-->
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<Reference Include="System" />
<Reference Include="System.Xml" />
<!--<PackageReference Include="Newtonsoft.Json" Version="6.0.8" />-->
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1'">
<!--<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />-->
</ItemGroup>

</Project>
3 changes: 0 additions & 3 deletions src/XPath2/XPath2.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">

<PropertyGroup>
<Version>1.1.4</Version>
<Description>This is an implementation of W3C XML Path Language (XPath) 2.0 for .NET based on standard XPathNavigator API.</Description>
<Copyright>Semyon A. Chertkov and Stef Heyenrath</Copyright>
<AssemblyTitle>Lightweight XPath2 implementation for .NET</AssemblyTitle>
Expand Down Expand Up @@ -29,8 +28,6 @@
<SignAssembly>true</SignAssembly>
<ProjectGuid>{D3804228-91F4-4502-9595-39584EAA0000}</ProjectGuid>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition=" '$(buildType)' == 'azure-pipelines-ci' ">
Expand Down

0 comments on commit d227923

Please sign in to comment.