Skip to content

Commit 2e1c017

Browse files
committed
CHANGELOG updated
1 parent ba6638e commit 2e1c017

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Version Changes
44

5+
### 1.0.0 - 2022-01-02
6+
7+
- C# 10 adopted
8+
- .Net Standard support deprecated
9+
- Support from .Net6 onwards
10+
- New CSA tools added into the build pipeline
11+
512
### 0.3.6 - 2021-01-25
613

714
- Added ToCamelCase string extension methods.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Common utility classes, guard clauses, and more.
1010

11-
Targeted to .Net Standard 2.0
11+
Targeted to .Net6 onwards
1212

1313
## Installation
1414

@@ -36,7 +36,7 @@ All the documentation can be found on the [github page](https://bytedecoder.me/B
3636

3737
They are a piece of code in charge of protecting params at the top of methods against undesirable values.
3838

39-
Supported *Guard Clauses*:
39+
Supported _Guard Clauses_:
4040

4141
- IfArgumentIsNull
4242
- IfArgumentIsNullOrEmpty
@@ -51,15 +51,15 @@ using ByteDecoder.Common.GuardClauses;
5151
public void MethodOne(IEnumerable<string> collection)
5252
{
5353
Guard.Break.IfArgumentIsNull(collection, nameof(collection));
54-
54+
5555
// More logic code if the param is suitable after the guard evaluates the condition.
5656
}
5757

5858
// String is NUll or Empty Guard check
5959
public void MethodTwo(string word)
6060
{
6161
Guard.Break.IfArgumentIsNull(word, nameof(word));
62-
62+
6363
// More logic code if the param is suitable after the guard evaluates the condition.
6464
}
6565

0 commit comments

Comments
 (0)