Skip to content

Commit 2740ff2

Browse files
committed
- Bumped HoloNET version to v2.1.3.
- Updated HoloNET Release Notes. - Bumped HoloNET Test Harness to v2.1.3. - Updated HoloNET Test Harness Release Notes.
1 parent 137c3b8 commit 2740ff2

File tree

3 files changed

+5
-54
lines changed

3 files changed

+5
-54
lines changed

NextGenSoftware.Holochain.HoloNET.Client.Core/NextGenSoftware.Holochain.HoloNET.Client.csproj

Lines changed: 2 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -17,48 +17,7 @@
1717
<Authors>David Ellams (NextGen Software Ltd)</Authors>
1818
<PackageTags>holochain;net;unity</PackageTags>
1919
<PackageReleaseNotes>
20-
https://github.com/holochain-open-dev/holochain-client-csharp/commit/c26a822f4fd6a2aff0da6b01bf4ab4796c663034:
21-
- Added IsEnabled parameter to the constructor for the HolochainProperty attribute.
22-
23-
- Added isVersionTrackingEnabled, isAuditTrackingEnabled &amp; isAuditAgentCreateModifyDeleteFieldsEnabled params to all constructors in HoloNETAuditEntryBaseClass.
24-
25-
- Added IsVersionTrackingEnabled, IsAuditTrackingEnabled &amp; IsAuditAgentCreateModifyDeleteFieldsEnabled properties to HoloNETAuditEntryBaseClass.
26-
27-
- Added customDataKeyValuePair &amp; holochainPropertiesIsEnabledKeyValuePair params to SaveAsync method in HoloNETAuditEntryBaseClass.
28-
29-
- Added entryHash to summary info for DeleteAsync method in HoloNETAuditEntryBaseClass.
30-
31-
- Moved Version property from HoloNETEntryBaseClass to HoloNETAuditEntryBaseClass.
32-
33-
- Added customDataKeyValuePair &amp; holochainPropertiesIsEnabledKeyValuePair params to SaveAsync method in HoloNETEntryBaseClass.
34-
35-
https://github.com/holochain-open-dev/holochain-client-csharp/commit/37e87dc46aab518febb8f1ac17a30f50b2197ed2:
36-
- Renamed HolochainPropertyName to HolochainFieldName throughout the full HoloNET codebase and documentation.
37-
38-
- Renamed propertyName to fieldName in HolochainFieldName attribute.
39-
40-
- Added holochainPropertiesIsEnabledKeyValuePair to call to base.SaveAsync in SaveAsync method in HoloNETAuditEntryBaseClass.
41-
42-
- Added summary documentation to HoloNETConfig properties.
43-
44-
- Added test/sample use case for overriding the SaveAsync method in Avatar example object where various properties are disabled.
45-
46-
https://github.com/holochain-open-dev/holochain-client-csharp/commit/a4d78bae4154a3939b53f0171a4609b326ce6bce:
47-
- Renamed holochainPropertiesIsEnabledKeyValuePair to holochainFieldsIsEnabledKeyValuePair param in SaveAsync &amp; Save methods in HoloNETAuditEntryBaseClass &amp; HoloNETEntryBaseClass.
48-
49-
- Added Save method to HoloNETAuditEntryBaseClass.
50-
51-
- Added 2 Delete overloads &amp; DeleteAsync methods to HoloNETAuditEntryBaseClass.
52-
53-
- Save methods in HoloNETEntryBaseClass are now all virtual methods meaning they can be overriden in classes that extend it.
54-
55-
- Avatar class in HoloNET Test Harness now has additional examples of how to override the Save and SaveAsync methods.
56-
57-
- Avatar class in HoloNET Test Harness now has example of how to use constructors that enable/disable the various auditing functionality of HoloNETAuditEntryBaseClass.
58-
59-
- Updated HoloNET README.md/documentation to reflect the latest changes to HoloNET such as the additional auditing capabilitites and increased flexability and extendability of the Save/SaveAsync methods.
60-
61-
- View full change log here: https://github.com/holochain-open-dev/holochain-client-csharp/releases/tag/v2.1.2
20+
- View full change log here: https://github.com/holochain-open-dev/holochain-client-csharp/releases/tag/v2.1.3
6221
</PackageReleaseNotes>
6322
<RepositoryType>git</RepositoryType>
6423
<RepositoryUrl>https://github.com/holochain-open-dev/holochain-client-csharp</RepositoryUrl>
@@ -67,7 +26,7 @@
6726
<!--<PackageLicenseExpression>GNU GPLv3</PackageLicenseExpression>-->
6827
<PackageLicenseExpression>MIT</PackageLicenseExpression>
6928
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
70-
<Version>2.1.2</Version>
29+
<Version>2.1.3</Version>
7130
<!--<PackageLicenseFile>..\LICENSE</PackageLicenseFile>-->
7231

7332
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>

NextGenSoftware.Holochain.HoloNET.Client.TestHarness/HoloNETTestHarness.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static async Task TestHoloNETClientAsync(TestToRun testToRun)
3434
{
3535
_timer.Start();
3636
_testToRun = testToRun;
37-
Console.WriteLine("NextGenSoftware.Holochain.HoloNET.Client Test Harness v2.1.2");
37+
Console.WriteLine("NextGenSoftware.Holochain.HoloNET.Client Test Harness v2.1.3");
3838
Console.WriteLine("");
3939

4040
HoloNETConfig config = new HoloNETConfig()

NextGenSoftware.Holochain.HoloNET.Client.TestHarness/NextGenSoftware.Holochain.HoloNET.Client.TestHarness.csproj

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,7 @@
1515
<Authors>David Ellams (NextGen Software Ltd)</Authors>
1616
<PackageTags>holochain;net;unity</PackageTags>
1717
<PackageReleaseNotes>
18-
https://github.com/holochain-open-dev/holochain-client-csharp/commit/37e87dc46aab518febb8f1ac17a30f50b2197ed2:
19-
- Added test/sample use case for overriding the SaveAsync method in Avatar example object where various properties are disabled.
20-
21-
https://github.com/holochain-open-dev/holochain-client-csharp/commit/a4d78bae4154a3939b53f0171a4609b326ce6bce:
22-
- Avatar class in HoloNET Test Harness now has additional examples of how to override the Save and SaveAsync methods.
23-
24-
- Avatar class in HoloNET Test Harness now has example of how to use constructors that enable/disable the various auditing functionality of HoloNETAuditEntryBaseClass.
25-
26-
- View full change log here: https://github.com/holochain-open-dev/holochain-client-csharp/releases/tag/v2.1.2
18+
- View full change log here: https://github.com/holochain-open-dev/holochain-client-csharp/releases/tag/v2.1.3
2719
</PackageReleaseNotes>
2820
<RepositoryType>git</RepositoryType>
2921
<RepositoryUrl>https://github.com/NextGenSoftwareUK/holochain-client-csharp</RepositoryUrl>
@@ -32,7 +24,7 @@
3224
<!--<PackageLicenseExpression>GNU GPLv3</PackageLicenseExpression>-->
3325
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3426
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
35-
<Version>2.1.2</Version>
27+
<Version>2.1.3</Version>
3628
<!--<PackageLicenseFile>..\LICENSE</PackageLicenseFile>-->
3729

3830
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>

0 commit comments

Comments
 (0)