Skip to content

Commit 0cfdf3b

Browse files
authored
Merge pull request #134 from sunnamed434/dev
Bump new version 0.16.2
2 parents b27b2c3 + 68f21e0 commit 0cfdf3b

8 files changed

Lines changed: 21 additions & 126 deletions

File tree

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

Lines changed: 0 additions & 91 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/OTHER.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
| Versions: |
99
|-------------------------------|
10+
| [0.16.2-alpha](#0162-alpha31) |
1011
| [0.16.1-alpha](#0161-alpha30) |
1112
| [0.16.0-alpha](#0160-alpha29) |
1213
| [0.15.1-alpha](#0151-alpha28) |
@@ -28,6 +29,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2829

2930
---
3031

32+
## 0.16.2-alpha.31
33+
2023-07-19
34+
35+
### Fixed
36+
37+
- Exception on the BitMono run [#132](https://github.com/sunnamed434/BitMono/issues/132)
38+
39+
### Changed
40+
41+
- The GitHub Issue Templates are removed now.
42+
3143
## 0.16.1-alpha.30
3244
2023-07-17
3345

props/SharedProjectProps.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<PackageLicenseExpression>MIT</PackageLicenseExpression>
77
<PackageProjectUrl>https://github.com/sunnamed434/BitMono</PackageProjectUrl>
88
<PackageOwners>sunnamed434</PackageOwners>
9-
<PackageVersion>0.16.1-alpha.30</PackageVersion>
9+
<PackageVersion>0.16.2-alpha.31</PackageVersion>
1010
<RepositoryUrl>https://github.com/sunnamed434/BitMono</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
1212
<Authors>sunnamed434</Authors>
13-
<Version>0.16.1-alpha.30</Version>
14-
<InformationalVersion>0.16.1-alpha.30</InformationalVersion>
13+
<Version>0.16.2-alpha.31</Version>
14+
<InformationalVersion>0.16.2-alpha.31</InformationalVersion>
1515
<Company>BitMono</Company>
1616
<Copyright>sunnamed434</Copyright>
1717
<LangVersion>10</LangVersion>

src/BitMono.Shared/GlobalUsings.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
global using Newtonsoft.Json;
2-
global using System.Collections.Generic;
2+
global using System.Collections.Generic;
3+
global using NullGuard;
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace BitMono.Shared.Models;
22

3+
[NullGuard(ValidationFlags.NonPublic)]
34
public class CriticalsSettings
45
{
56
public bool UseCriticalAttributes { get; set; }
@@ -8,12 +9,12 @@ public class CriticalsSettings
89
public bool UseCriticalBaseTypes { get; set; }
910
public bool UseCriticalMethodsStartsWith { get; set; }
1011
public bool UseCriticalMethods { get; set; }
11-
#pragma warning disable CS8618
12+
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
1213
public List<CriticalAttribute> CriticalAttributes { get; set; }
1314
public List<CriticalAttribute> CriticalModelAttributes { get; set; }
1415
public List<string> CriticalInterfaces { get; set; }
1516
public List<string> CriticalBaseTypes { get; set; }
1617
public List<string> CriticalMethodsStartsWith { get; set; }
1718
public List<string> CriticalMethods { get; set; }
18-
#pragma warning restore CS8618
19-
}
19+
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
20+
}

0 commit comments

Comments
 (0)