diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5314d29..fec8041 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Nothing yet.
+## [3.0.1] - 2024-12-23
+
+### Added
+
+- Value object unit tests.
+
+### Fixed
+
+- EventBus is now a public class and can be overriden.
+- Locale constructor.
+- Url constructor.
+
## [3.0.0] - 2024-12-23
### Changed
@@ -32,7 +44,8 @@ Nothing yet.
- Relational storage (PostgreSQL and Microsoft SQL Server) for Identity entities.
- Unit and Integration tests.
-[unreleased]: https://github.com/Logitar/Identity/compare/v3.0.0...HEAD
+[unreleased]: https://github.com/Logitar/Identity/compare/v3.0.1...HEAD
+[3.0.1]: https://github.com/Logitar/Identity/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/Logitar/Identity/compare/v2.0.0...v3.0.0
[2.0.0]: https://github.com/Logitar/Identity/compare/v1.0.0...v2.0.0
[1.0.0]: https://github.com/Logitar/Identity/releases/tag/v1.0.0
diff --git a/lib/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj b/lib/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj
index 7df8be5..7a7acec 100644
--- a/lib/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj
+++ b/lib/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj
@@ -15,14 +15,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
True
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;contracts
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.Contracts
diff --git a/lib/Logitar.Identity.Core/Logitar.Identity.Core.csproj b/lib/Logitar.Identity.Core/Logitar.Identity.Core.csproj
index d4b1b8b..01d89cd 100644
--- a/lib/Logitar.Identity.Core/Logitar.Identity.Core.csproj
+++ b/lib/Logitar.Identity.Core/Logitar.Identity.Core.csproj
@@ -14,14 +14,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
True
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;domain
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.Core
diff --git a/lib/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj b/lib/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj
index c458588..4dd1afa 100644
--- a/lib/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj
+++ b/lib/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj
@@ -15,14 +15,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
False
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;entityframeworkcore;postgres
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.EntityFrameworkCore.PostgreSQL
diff --git a/lib/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj b/lib/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj
index 3a385dc..36513cf 100644
--- a/lib/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj
+++ b/lib/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj
@@ -15,14 +15,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
False
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;entityframeworkcore;relational
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.EntityFrameworkCore.Relational
diff --git a/lib/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj b/lib/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj
index d18d5df..b674328 100644
--- a/lib/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj
+++ b/lib/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj
@@ -15,14 +15,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
False
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;entityframeworkcore;sqlserver
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.EntityFrameworkCore.SqlServer
diff --git a/lib/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj b/lib/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj
index ef673bf..04df3dd 100644
--- a/lib/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj
+++ b/lib/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj
@@ -15,14 +15,14 @@
README.md
https://github.com/Logitar/Identity
git
- 3.0.0.0
+ 3.0.1.0
$(AssemblyVersion)
LICENSE
True
- 3.0.0
+ 3.0.1
en-CA
False
- Rewrote the framework to include changes made to EventSourcing.
+ Fixed EventBus; fixed Locale and Url constructor.
logitar;net;framework;identity;infrastructure
https://github.com/Logitar/Identity/tree/main/lib/Logitar.Identity.Infrastructure