Skip to content

Commit 139c9e1

Browse files
committed
Update docs for v5.12.1
1 parent 356a63f commit 139c9e1

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v5.12.1] - 2023-09-05
8+
### Fixed
9+
- [#144](https://github.com/z4kn4fein/stashbox/issues/144): There was a case where closed generic decorators were not taken into account during service resolution.
10+
- [#143](https://github.com/z4kn4fein/stashbox/issues/143): Child scopes attached to their parents were not removed from disposal tracking when they were disposed individually.
11+
- [#141](https://github.com/z4kn4fein/stashbox/issues/141): There was a case where wrong decorators were selected during an `IEnumerable<T>` resolution call.
12+
713
## [v5.11.1] - 2023-08-16
814
### Fixed
915
- [#142](https://github.com/z4kn4fein/stashbox/issues/142): Upon disposing child containers, their parents still held a strong reference to them.
@@ -388,6 +394,7 @@ The validation was executed only at the expression tree building phase, so an al
388394
- Removed the legacy container extension functionality.
389395
- Removed the support of PCL v259.
390396

397+
[v5.12.1]: https://github.com/z4kn4fein/stashbox/compare/5.11.1...5.12.1
391398
[v5.11.1]: https://github.com/z4kn4fein/stashbox/compare/5.11.0...5.11.1
392399
[v5.11.0]: https://github.com/z4kn4fein/stashbox/compare/5.10.2...5.11.0
393400
[v5.10.2]: https://github.com/z4kn4fein/stashbox/compare/5.10.1...5.10.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Stashbox is a lightweight, fast, and portable dependency injection framework for
1414

1515
Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (pre-release)
1616
--- | --- |---------------------------------------------------------------------------------------------------------------------------------| ---
17-
[![Github release](https://img.shields.io/github/release/z4kn4fein/stashbox.svg)](https://github.com/z4kn4fein/stashbox/releases) | [![NuGet Version](https://buildstats.info/nuget/Stashbox)](https://www.nuget.org/packages/Stashbox/) | [![Stashbox on fuget.org](https://www.fuget.org/packages/Stashbox/badge.svg?v=5.11.0)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
17+
[![Github release](https://img.shields.io/github/release/z4kn4fein/stashbox.svg)](https://github.com/z4kn4fein/stashbox/releases) | [![NuGet Version](https://buildstats.info/nuget/Stashbox)](https://www.nuget.org/packages/Stashbox/) | [![Stashbox on fuget.org](https://www.fuget.org/packages/Stashbox/badge.svg?v=5.12.1)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
1818

1919
## Core Attributes
2020
- 🚀 Fast, thread-safe, and lock-free operations.

docs/docs/getting-started/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ Stashbox and its extensions are distributed via [NuGet](https://www.nuget.org/pa
1212

1313
You can install the package by typing the following into the Package Manager Console:
1414
```powershell
15-
Install-Package Stashbox -Version 5.11.0
15+
Install-Package Stashbox -Version 5.12.1
1616
```
1717

1818
</TabItem>
1919
<TabItem value="dotnet CLI" label="dotnet CLI">
2020

2121
You can install the package by using the dotnet cli:
2222
```bash
23-
dotnet add package Stashbox --version 5.11.0
23+
dotnet add package Stashbox --version 5.12.1
2424
```
2525

2626
</TabItem>
2727
<TabItem value="PackageReference" label="PackageReference">
2828

2929
You can add the package into the package references of your `.csproj`:
3030
```xml
31-
<PackageReference Include="Stashbox" Version="5.11.0" />
31+
<PackageReference Include="Stashbox" Version="5.12.1" />
3232
```
3333

3434
</TabItem>

docs/docs/getting-started/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ These are the latest available stable and pre-release versions:
1717

1818
Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (daily)
1919
--- | --- |---------------------------------------------------------------------------------------------------------------------------------| ---
20-
[![Github release](https://img.shields.io/github/release/z4kn4fein/stashbox.svg)](https://github.com/z4kn4fein/stashbox/releases) | [![NuGet Version](https://buildstats.info/nuget/Stashbox)](https://www.nuget.org/packages/Stashbox/) | [![Stashbox on fuget.org](https://www.fuget.org/packages/Stashbox/badge.svg?v=5.11.0)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
20+
[![Github release](https://img.shields.io/github/release/z4kn4fein/stashbox.svg)](https://github.com/z4kn4fein/stashbox/releases) | [![NuGet Version](https://buildstats.info/nuget/Stashbox)](https://www.nuget.org/packages/Stashbox/) | [![Stashbox on fuget.org](https://www.fuget.org/packages/Stashbox/badge.svg?v=5.12.1)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
2121

2222
## Core attributes
2323
- 🚀 Fast, thread-safe, and lock-free operations.

docs/src/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function HomepageHeader() {
2424

2525
<div className={styles.installContainer}>
2626
<div className={styles.install}>
27-
<pre><span className={styles.command_start}>{'$'} </span><span className={styles.command}>dotnet</span><span> add package Stashbox</span><span className={styles.options}> --version</span> 5.11.0<span className={styles.cursor}></span></pre>
27+
<pre><span className={styles.command_start}>{'$'} </span><span className={styles.command}>dotnet</span><span> add package Stashbox</span><span className={styles.options}> --version</span> 5.12.1<span className={styles.cursor}></span></pre>
2828
</div>
2929
</div>
3030

0 commit comments

Comments
 (0)