Skip to content

Commit

Permalink
bump version to 3.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Mar 31, 2020
1 parent 6562a9a commit 0753a2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<Version>3.0.0-alpha1</Version>
<Version>3.0.0-beta1</Version>
<NoWarn>NU5118</NoWarn>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ NullGuard supports three modes of operations, [*implicit*](#implicit-mode), [*ex

* In [*implicit*](#implicit-mode) mode everything is assumed to be not-null, unless attributed with `[AllowNull]`. This is how NullGuard has been working always.
* In [*explicit*](#explicit-mode) mode everything is assumed to be nullable, unless attributed with `[NotNull]`. This mode is designed to support the R# nullability analysis, using pessimistic mode.
* In the new [*nullable reference types*](#nrt-mode) mode the C# 8 nullable reference type (NRT) annotations are used to determine if a type may be null.
* In [*nullable reference types*](#nrt-mode) mode the C# 8 nullable reference type (NRT) annotations are used to determine if a type may be null.

If not configured explicitly, NullGuard will auto-detect the mode as follows:

Expand Down

0 comments on commit 0753a2d

Please sign in to comment.