Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Jun 2, 2022
1 parent cdcd79a commit 5dc2861
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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.4.2] - 2022-06-02
### Fixed
- Name conflict on the service resolution delegates.

### Changed
- Make the `name` parameter of the `Resolve()` functions nullable.

## [v5.4.1] - 2022-05-16
### Fixed
- Type load exception when the library was trimmed.
Expand Down Expand Up @@ -249,6 +256,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.4.2]: https://github.com/z4kn4fein/stashbox/compare/5.4.1...5.4.2
[v5.4.1]: https://github.com/z4kn4fein/stashbox/compare/5.4.0...5.4.1
[v5.4.0]: https://github.com/z4kn4fein/stashbox/compare/5.3.0...5.4.0
[v5.3.0]: https://github.com/z4kn4fein/stashbox/compare/5.2.1...5.3.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Stashbox is a lightweight, fast, and portable dependency injection framework for

Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (pre-release)
--- | --- | --- | ---
[![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.4.1)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
[![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.4.2)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)

## Core Attributes
- 🚀 Fast, thread-safe, and lock-free operations.
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](assets/images/icon.png)

# Stashbox <small>5.4.1</small>
# Stashbox <small>5.4.2</small>

> A lightweight, fast, and portable .NET DI framework.
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.1
Install-Package Stashbox -Version 5.4.2
```

#### **dotnet CLI**

You can install the package by using the dotnet cli:
```
dotnet add package Stashbox --version 5.4.1
dotnet add package Stashbox --version 5.4.2
```

#### **PackageReference**

You can add the package into the package references of your `.csproj`:
```
<PackageReference Include="Stashbox" Version="5.4.1" />
<PackageReference Include="Stashbox" Version="5.4.2" />
```

<!-- tabs:end -->
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ These are the latest stable and pre-release versions available:

Github (stable) | NuGet (stable) | Fuget (stable) | NuGet (daily)
--- | --- | --- | ---
[![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.4.1)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)
[![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.4.2)](https://www.fuget.org/packages/Stashbox) | [![Nuget pre-release](https://img.shields.io/nuget/vpre/Stashbox)](https://www.nuget.org/packages/Stashbox/)

## Core attributes
- 🚀 Fast, thread-safe, and lock-free operations.
Expand Down

0 comments on commit 5dc2861

Please sign in to comment.