From f76c5150828dbb3776b455ca80c9bb32c37ca145 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Fri, 8 Mar 2019 18:41:45 -0700 Subject: [PATCH] release: 3.0.0 --- CHANGELOG.md | 9 ++++++++- Directory.Build.props | 4 ++-- README.md | 4 ++-- docs/Introduction.md | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0df048c6..00b298b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -## Version History +## Version +**3.0.0** +* Allow resetting option cache per-tenant. This is a breaking change. +* Host strategy can match entire domain as a special case (prior it only matched a single host segment). +* Added a sample project demonstrating a common login page shared by all tenants. +* Overhauled documentation. +* Updated unit and integration tests. + **2.0.2** * Fixed bug in Identity where `UserLogins` primary key was not adjusted for multitenant usage. * Updated and Fixed the IdentityDataIsolation sample project. diff --git a/Directory.Build.props b/Directory.Build.props index fa2b9820..cf836b89 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,10 +2,10 @@ true - 2.0.2 + 3.0.0 Andrew White Copyright ©2018 Andrew White - https://github.com/Finbuckle/Finbuckle.MultiTenant/blob/master/LICENSE + Apache-2.0 https://www.finbuckle.com https://github.com/Finbuckle/Finbuckle.MultiTenant finbuckle;multitenant;aspnetcore;efcore diff --git a/README.md b/README.md index a2ab7489..f731646f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Finbuckle.MultiTenant 2.0.2 +# Finbuckle.MultiTenant 3.0.0 -Finbuckle.MultiTenant is a .NET Standard library for multitenant support designed for ASP.NET Core 2. It provides functionality for tenant resolution, per-tenant app configuration, and per-tenant data isolation. +Finbuckle.MultiTenant is a .NET Standard library for multitenant support designed for ASP.NET Core 2.0+. It provides functionality for tenant resolution, per-tenant app configuration, and per-tenant data isolation. See [https://www.finbuckle.com](https://www.finbuckle.com) for more details and documentation. diff --git a/docs/Introduction.md b/docs/Introduction.md index 908dc6ee..bbf19992 100644 --- a/docs/Introduction.md +++ b/docs/Introduction.md @@ -1,5 +1,5 @@ # Finbuckle.MultiTenant Docs -Current version: 2.0.2 +Current version: 3.0.0 [Version History](https://github.com/Finbuckle/Finbuckle.MultiTenant/blob/master/CHANGELOG.md) Finbuckle.MultiTenant is a .NET Standard library for multitenant support designed for ASP.NET Core 2.0+. It provides functionality for tenant resolution, per-tenant app configuration, and per-tenant data isolation.