From 0753a2d0f91c1906d726170b83f391deb00a5b0b Mon Sep 17 00:00:00 2001 From: tom-englert Date: Tue, 31 Mar 2020 17:19:57 +0200 Subject: [PATCH] bump version to 3.0.0-beta1 --- Directory.Build.props | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 0e326668..7546cac8 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ true latest - 3.0.0-alpha1 + 3.0.0-beta1 NU5118 diff --git a/readme.md b/readme.md index a9ec78f6..3f4b1362 100644 --- a/readme.md +++ b/readme.md @@ -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: