Skip to content

Commit

Permalink
Release v2.0.0 (#62)
Browse files Browse the repository at this point in the history
* [FEATURE]: ScalarValue can be Nothing (#57)

* ScalarValue can be Nothing

---------

Co-authored-by: Brenton Farmer <[email protected]>

* [FEATURE]: Benchmark exporter (#61)

* A basic jsonpath markdown benchmark exporter

---------

Co-authored-by: Brenton Farmer <[email protected]>

* [FEATURE]: Add JsonPatch and JsonDiff (#59)

* Added JsonPatch and JsonDiff
* Added JsonPointer and JsonPathPointerConverter
* Improved ValueStringBuilder performance improvement
* Improve IRegex rewrite code
* Improved Test coverage
* Added support for initial documentation in GitHub Pages
* Updated Namespaces for Path, Pointer, Patch

---------

Co-authored-by: Matt Edwards <[email protected]>
Co-authored-by: Brenton Farmer <[email protected]>

* Previous version was 'v1.4.0'. Version now 'v2.0.0'.

* updated description

* removed direct path to readme

---------

Co-authored-by: Brenton Farmer <[email protected]>
Co-authored-by: MattEdwardsWaggleBee <[email protected]>
  • Loading branch information
3 people authored Aug 1, 2024
1 parent 3fc382f commit 82c8988
Show file tree
Hide file tree
Showing 138 changed files with 5,982 additions and 1,382 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Solution version numbers -->
<PropertyGroup>
<MajorVersion>1</MajorVersion>
<MinorVersion>4</MinorVersion>
<MajorVersion>2</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>
</PropertyGroup>
<!-- Disable automatic package publishing -->
Expand Down
16 changes: 6 additions & 10 deletions Hyperbee.Json.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31912.275
Expand Down Expand Up @@ -36,16 +35,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hyperbee.Json.Tests", "test
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hyperbee.Json.Benchmark", "test\Hyperbee.Json.Benchmark\Hyperbee.Json.Benchmark.csproj", "{45C24D4B-4A0B-4FF1-AC66-38374D2455E9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{13CB9B41-0462-4812-8B13-0BFD17F2BC18}"
ProjectSection(SolutionItems) = preProject
docs\ADDITIONAL-CLASSES.md = docs\ADDITIONAL-CLASSES.md
docs\index.md = docs\index.md
docs\JSONPATH-SYNTAX.md = docs\JSONPATH-SYNTAX.md
docs\_config.yml = docs\_config.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hyperbee.Json.Cts", "test\Hyperbee.Json.Cts\Hyperbee.Json.Cts.csproj", "{CC1D3E7F-E6F1-432B-B4D1-9402AED24119}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "docs", "docs\docs.shproj", "{FC3B0A95-4DA0-43A0-A19D-624152BDF2F6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -77,10 +70,13 @@ Global
{4DBDB7F5-3F66-4572-80B5-3322449C77A4} = {1FA7CE2A-C9DA-4DC3-A242-5A7EAF8EE4FC}
{97886205-1467-4EE6-B3DA-496CA3D086E4} = {F9B24CD9-E06B-4834-84CB-8C29E5F10BE0}
{45C24D4B-4A0B-4FF1-AC66-38374D2455E9} = {F9B24CD9-E06B-4834-84CB-8C29E5F10BE0}
{13CB9B41-0462-4812-8B13-0BFD17F2BC18} = {870D9301-BE3D-44EA-BF9C-FCC2E87FE4CD}
{CC1D3E7F-E6F1-432B-B4D1-9402AED24119} = {F9B24CD9-E06B-4834-84CB-8C29E5F10BE0}
{FC3B0A95-4DA0-43A0-A19D-624152BDF2F6} = {870D9301-BE3D-44EA-BF9C-FCC2E87FE4CD}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {32874F5B-B467-4F28-A8E2-82C2536FB228}
EndGlobalSection
GlobalSection(SharedMSBuildProjectFiles) = preSolution
docs\docs.projitems*{fc3b0a95-4da0-43a0-a19d-624152bdf2f6}*SharedItemsImports = 13
EndGlobalSection
EndGlobal
Loading

0 comments on commit 82c8988

Please sign in to comment.