Skip to content

Commit

Permalink
releasing v4.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
maximv committed Jul 14, 2020
1 parent 406aa5a commit aed396c
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ DryIoc is fast, small, full-featured IoC Container for .NET
- __DryIoc__ (source code) [![NuGet Badge](https://buildstats.info/nuget/DryIoc)](https://www.nuget.org/packages/DryIoc)
- __DryIoc.Internal__ (source code with public types made internal) [![NuGet Badge](https://buildstats.info/nuget/DryIoc.Internal)](https://www.nuget.org/packages/DryIoc.Internal)

- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.2.3) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.2.4) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
- [Extensions and Companions](Extensions.md)
- [Documentation][WikiHome]
- [Contribution guide](CONTRIBUTING.md)
Expand Down
6 changes: 3 additions & 3 deletions docs/DryIoc.Docs/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ Get from NuGet:
- __DryIoc__ (source code) [![NuGet Badge](https://buildstats.info/nuget/DryIoc)](https://www.nuget.org/packages/DryIoc)
- __DryIoc.Internal__ (source code with public types made internal) [![NuGet Badge](https://buildstats.info/nuget/DryIoc.Internal)](https://www.nuget.org/packages/DryIoc.Internal)

## v4.2.3 Bug-fix release
## v4.2.4 Bug-fix release

- fixed: #289 Think how to make Use to directly replace scoped service without special asResolutionCall setup
- fixed: #290 ScopedTo to Singleton does not work

[Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.2.3)
[Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.2.4)

### [Previous Versions](VersionHistory.md)
4 changes: 4 additions & 0 deletions docs/DryIoc.Docs/VersionHistory.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version History
---------------

## v4.2.4 Bug-fix release / 2020-07-14

- fixed: #290 ScopedTo to Singleton does not work

## v4.2.3 Bug-fix release / 2020-07-04

- fixed: #289 Think how to make Use to directly replace scoped service without special asResolutionCall setup
Expand Down
6 changes: 5 additions & 1 deletion nuspecs/DryIoc.Internal.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>DryIoc.Internal</id>
<version>4.2.3</version>
<version>4.2.4</version>

<authors>Maksim Volkau</authors>

Expand All @@ -15,6 +15,10 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v4.2.4 Bug-fix release
- fixed: #290 ScopedTo to Singleton does not work
## v4.2.3 Bug-fix release
- fixed: #289 Think how to make Use to directly replace scoped service without special asResolutionCall setup
Expand Down
6 changes: 5 additions & 1 deletion nuspecs/DryIoc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>DryIoc</id>
<version>4.2.3</version>
<version>4.2.4</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2020 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -13,6 +13,10 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v4.2.4 Bug-fix release
- fixed: #290 ScopedTo to Singleton does not work
## v4.2.3 Bug-fix release
- fixed: #289 Think how to make Use to directly replace scoped service without special asResolutionCall setup
Expand Down
6 changes: 5 additions & 1 deletion src/DryIoc/DryIoc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks Condition="'$(NoLegacy)' == 'true'">net45;netstandard1.0;netstandard1.3;netstandard2.0</TargetFrameworks>

<Product>DryIoc</Product>
<VersionPrefix>4.2.3</VersionPrefix>
<VersionPrefix>4.2.4</VersionPrefix>
<VersionSuffix></VersionSuffix>

<AssemblyName>$(Product)</AssemblyName>
Expand All @@ -17,6 +17,10 @@
<PackageTags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory FastExpressionCompiler ImTools</PackageTags>
<PackageReleaseNotes>
<![CDATA[
## v4.2.4 Bug-fix release
- fixed: #290 ScopedTo to Singleton does not work
## v4.2.3 Bug-fix release
- fixed: #289 Think how to make Use to directly replace scoped service without special asResolutionCall setup
Expand Down

0 comments on commit aed396c

Please sign in to comment.