Skip to content

Commit

Permalink
Merge pull request #134 from sunnamed434/dev
Browse files Browse the repository at this point in the history
Bump new version 0.16.2
  • Loading branch information
sunnamed434 committed Jul 19, 2023
2 parents b27b2c3 + 68f21e0 commit 0cfdf3b
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 126 deletions.
91 changes: 0 additions & 91 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/OTHER.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

---

## 0.16.2-alpha.31
2023-07-19

### Fixed

- Exception on the BitMono run [#132](https://github.com/sunnamed434/BitMono/issues/132)

### Changed

- The GitHub Issue Templates are removed now.

## 0.16.1-alpha.30
2023-07-17

Expand Down
6 changes: 3 additions & 3 deletions props/SharedProjectProps.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sunnamed434/BitMono</PackageProjectUrl>
<PackageOwners>sunnamed434</PackageOwners>
<PackageVersion>0.16.1-alpha.30</PackageVersion>
<PackageVersion>0.16.2-alpha.31</PackageVersion>
<RepositoryUrl>https://github.com/sunnamed434/BitMono</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>sunnamed434</Authors>
<Version>0.16.1-alpha.30</Version>
<InformationalVersion>0.16.1-alpha.30</InformationalVersion>
<Version>0.16.2-alpha.31</Version>
<InformationalVersion>0.16.2-alpha.31</InformationalVersion>
<Company>BitMono</Company>
<Copyright>sunnamed434</Copyright>
<LangVersion>10</LangVersion>
Expand Down
3 changes: 2 additions & 1 deletion src/BitMono.Shared/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
global using Newtonsoft.Json;
global using System.Collections.Generic;
global using System.Collections.Generic;
global using NullGuard;
7 changes: 4 additions & 3 deletions src/BitMono.Shared/Models/CriticalsSettings.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace BitMono.Shared.Models;

[NullGuard(ValidationFlags.NonPublic)]
public class CriticalsSettings
{
public bool UseCriticalAttributes { get; set; }
Expand All @@ -8,12 +9,12 @@ public class CriticalsSettings
public bool UseCriticalBaseTypes { get; set; }
public bool UseCriticalMethodsStartsWith { get; set; }
public bool UseCriticalMethods { get; set; }
#pragma warning disable CS8618
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
public List<CriticalAttribute> CriticalAttributes { get; set; }
public List<CriticalAttribute> CriticalModelAttributes { get; set; }
public List<string> CriticalInterfaces { get; set; }
public List<string> CriticalBaseTypes { get; set; }
public List<string> CriticalMethodsStartsWith { get; set; }
public List<string> CriticalMethods { get; set; }
#pragma warning restore CS8618
}
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
}

0 comments on commit 0cfdf3b

Please sign in to comment.