diff --git a/CHANGELOG.md b/CHANGELOG.md
index b16dd2a3..da62056b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [v5.5.2] - 2022-10-14
+### Fixed
+- [#119](https://github.com/z4kn4fein/stashbox/issues/119)
+
## [v5.5.1] - 2022-10-13
### Fixed
- During the resolution of an open generic service, the actual closed generic registration didn't inherit the registration options from the open generic registration.
@@ -268,6 +272,7 @@ The validation was executed only at the expression tree building phase, so an al
- Removed the legacy container extension functionality.
- Removed the support of PCL v259.
+[v5.5.1]: https://github.com/z4kn4fein/stashbox/compare/5.5.1...5.5.2
[v5.5.1]: https://github.com/z4kn4fein/stashbox/compare/5.5.0...5.5.1
[v5.5.0]: https://github.com/z4kn4fein/stashbox/compare/5.4.3...5.5.0
[v5.4.3]: https://github.com/z4kn4fein/stashbox/compare/5.4.2...5.4.3
diff --git a/README.md b/README.md
index d84039bd..3d7d4369 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Stashbox is a lightweight, fast, and portable dependency injection framework for
Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (pre-release)
--- | --- | --- | ---
-[](https://github.com/z4kn4fein/stashbox/releases) | [](https://www.nuget.org/packages/Stashbox/) | [](https://www.fuget.org/packages/Stashbox) | [](https://www.nuget.org/packages/Stashbox/)
+[](https://github.com/z4kn4fein/stashbox/releases) | [](https://www.nuget.org/packages/Stashbox/) | [](https://www.fuget.org/packages/Stashbox) | [](https://www.nuget.org/packages/Stashbox/)
## Core Attributes
- 🚀 Fast, thread-safe, and lock-free operations.
diff --git a/docs/_coverpage.md b/docs/_coverpage.md
index d885c560..63044afd 100644
--- a/docs/_coverpage.md
+++ b/docs/_coverpage.md
@@ -1,6 +1,6 @@

-# Stashbox 5.5.1
+# Stashbox 5.5.2
> A lightweight, fast, and portable .NET DI framework.
diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md
index 1efea2b1..de20095c 100644
--- a/docs/getting-started/introduction.md
+++ b/docs/getting-started/introduction.md
@@ -8,21 +8,21 @@ Stashbox and its extensions are distributed via [NuGet](https://www.nuget.org/pa
You can install the package by typing the following into the Package Manager Console:
```
-Install-Package Stashbox -Version 5.5.1
+Install-Package Stashbox -Version 5.5.2
```
#### **dotnet CLI**
You can install the package by using the dotnet cli:
```
-dotnet add package Stashbox --version 5.5.1
+dotnet add package Stashbox --version 5.5.2
```
#### **PackageReference**
You can add the package into the package references of your `.csproj`:
```
-
+
```
diff --git a/docs/getting-started/overview.md b/docs/getting-started/overview.md
index f6acfd15..8ab2cdd3 100644
--- a/docs/getting-started/overview.md
+++ b/docs/getting-started/overview.md
@@ -13,7 +13,7 @@ These are the latest stable and pre-release versions available:
Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (daily)
--- | --- | --- | ---
-[](https://github.com/z4kn4fein/stashbox/releases) | [](https://www.nuget.org/packages/Stashbox/) | [](https://www.fuget.org/packages/Stashbox) | [](https://www.nuget.org/packages/Stashbox/)
+[](https://github.com/z4kn4fein/stashbox/releases) | [](https://www.nuget.org/packages/Stashbox/) | [](https://www.fuget.org/packages/Stashbox) | [](https://www.nuget.org/packages/Stashbox/)
## Core attributes
- 🚀 Fast, thread-safe, and lock-free operations.