Skip to content

Commit 81302c7

Browse files
committed
Adjust documentation and generate new version.
1 parent 5463c06 commit 81302c7

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![NuGet Version](https://img.shields.io/nuget/v/DomainCommonExtensions.svg?style=flat&logo=nuget)](https://www.nuget.org/packages/DomainCommonExtensions/)
44
[![Nuget Downloads](https://img.shields.io/nuget/dt/DomainCommonExtensions.svg?style=flat&logo=nuget)](https://www.nuget.org/packages/DomainCommonExtensions)
55

6-
This library/ repository was created as a way to simplify the development process. Here were written the usually used methods (extension methods) for some data types like `int, string, DateTime, Enum, bool, byte, Guid`, also there was added extensions for `List, Dictionary, DynamicList(using 'System.Linq.Dynamic.Core')` and other collections(`ICollection, IEnumerable, IList, HashSet, IQueryable`).
6+
This library/ repository was created as a way to simplify the development process. Here were written the usually used methods (extension methods) for some data types like `int, string, DateTime, Enum, bool, byte, Guid`, also there was added extensions for `List, Dictionary, DynamicList` and other collections(`ICollection, IEnumerable, IList, HashSet, IQueryable`).
77

88
In the repository was added an extension for `cryptography`, encrypting and decrypting string by key with RSA.
99

docs/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,12 @@
115115

116116
### **v1.3.0.0**
117117
-> Fix test for `CalculateAge`;<br />
118-
-> Add new string extensions: `IsValidJson`, `IsValidJsonObject`, `IsValidJsonArray`.<br />
118+
-> Add new string extensions: `IsValidJson`, `IsValidJsonObject`, `IsValidJsonArray`;<br />
119+
120+
### **v2.0.0.0**
121+
-> Fix test for `CalculateAge`;<br />
122+
-> Add DateTime extension method `AsNotNull`;<br />
123+
-> Add new tests for `AsNotNull` methods;<br />
124+
-> Add `EnumerateUtils` enumerable utils some tests;<br />
125+
-> Adjust AES encryption(`AesEncryptString`, `AesDecryptString`) and expose iv as input;<br />
126+
-> Adjust dynamic property/ies select avoid `System.Linq.Dynamic.Core`;<br />

src/shared/GeneralAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
4848
#endif
4949

50-
[assembly: AssemblyVersion("1.3.0.0")]
51-
[assembly: AssemblyFileVersion("1.3.0.0")]
52-
[assembly: AssemblyInformationalVersion("1.3.0.0")]
50+
[assembly: AssemblyVersion("2.0.0.0")]
51+
[assembly: AssemblyFileVersion("2.0.0.0")]
52+
[assembly: AssemblyInformationalVersion("2.0.0.0")]

0 commit comments

Comments
 (0)