Skip to content

Commit c120da7

Browse files
committed
Releasing version v2.0.1
1 parent befa59a commit c120da7

File tree

5 files changed

+30
-16
lines changed

5 files changed

+30
-16
lines changed

KGySoft.Json/.nuspec/KGySoft.Json.nuspec

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>KGySoft.Json</id>
5-
<version>2.0.0</version>
5+
<version>2.0.1</version>
66
<title>KGy SOFT JSON Libraries</title>
77
<authors>György Kőszeg</authors>
88
<owners>György Kőszeg</owners>
@@ -19,7 +19,7 @@ Main highlights:
1919
- Easy DOM navigation with compact and intuitive syntax
2020
- Just call ToString to get the JSON content (compact or indented)
2121
- Simple serialization into StringBuilder, Stream or any TextWriter
22-
- A lot of extensions for converting to and from .NET types including enums, DateTime or TimeSpan
22+
- A lot of extensions for converting to and from .NET types including enums, BigInteger, DateTime, TimeSpan, etc.
2323

2424
Documentation: https://docs.kgysoft.net/json</description>
2525
<releaseNotes>See the detailed release notes here: https://github.com/koszeggy/KGySoft.Json/blob/master/KGySoft.Json/changelog.txt</releaseNotes>
@@ -29,34 +29,34 @@ Documentation: https://docs.kgysoft.net/json</description>
2929
<repository type="git" url="https://github.com/koszeggy/KGySoft.Json" />
3030
<dependencies>
3131
<group targetFramework="net35">
32-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
32+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
3333
</group>
3434
<group targetFramework="net40">
35-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
35+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
3636
</group>
3737
<group targetFramework="net45">
38-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
38+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
3939
</group>
4040
<group targetFramework="net472">
41-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
41+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
4242
</group>
4343
<group targetFramework="netstandard2.0" >
44-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
44+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
4545
</group>
4646
<group targetFramework="netstandard2.1" >
47-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
47+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
4848
</group>
4949
<group targetFramework="netcoreapp2.0" >
50-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
50+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
5151
</group>
5252
<group targetFramework="netcoreapp2.1" >
53-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
53+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
5454
</group>
5555
<group targetFramework="net5.0" >
56-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
56+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
5757
</group>
5858
<group targetFramework="net6.0" >
59-
<dependency id="KGySoft.CoreLibraries" version="6.0.0" />
59+
<dependency id="KGySoft.CoreLibraries" version="6.0.2" />
6060
</group>
6161
</dependencies>
6262
</metadata>

KGySoft.Json/Help/KGySoft.Json.chm

5.98 KB
Binary file not shown.

KGySoft.Json/KGySoft.Json.shfbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
3333
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
3434
<HelpTitle>KGy SOFT JSON Libraries Help</HelpTitle>
35-
<HelpFileVersion>2.0.0</HelpFileVersion>
35+
<HelpFileVersion>2.0.1</HelpFileVersion>
3636
<NamingMethod>MemberName</NamingMethod>
3737
<ContentPlacement>AboveNamespaces</ContentPlacement>
3838
<RootNamespaceContainer>False</RootNamespaceContainer>

KGySoft.Json/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121

2222
[assembly: CLSCompliant(true)]
2323

24-
[assembly: AssemblyVersion("2.0.0.0")]
25-
[assembly: AssemblyFileVersion("2.0.0.0")]
26-
[assembly: AssemblyInformationalVersion("2.0.0")]
24+
[assembly: AssemblyVersion("2.0.1.0")]
25+
[assembly: AssemblyFileVersion("2.0.1.0")]
26+
[assembly: AssemblyInformationalVersion("2.0.1")]
2727

2828
[assembly: AllowPartiallyTrustedCallers]
2929

KGySoft.Json/changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
+ New feature
66
===============================================================================
77

8+
~~~~~~~~~
9+
* v2.0.1:
10+
~~~~~~~~~
11+
12+
* Assembly changes:
13+
===================
14+
* Upgrading KGySoft.CoreLibraries to version 6.0.2. This may also fix some possible issues if your project uses
15+
partially trusted domains (.NET Framework 4.x), or when you target the x86 platform (.NET Core 3.0 and above).
16+
17+
+ JsonValueExtensions class:
18+
============================
19+
+ New TryGetDateTime, AsDateTime and GetDateTimeOrDefault overloads.
20+
21+
822
~~~~~~~~~
923
! v2.0.0:
1024
~~~~~~~~~

0 commit comments

Comments
 (0)