Skip to content

Commit e98cf2b

Browse files
author
maximv
committed
Releasing v4.5.1
1 parent 2a0a5a5 commit e98cf2b

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ DryIoc is fast, small, full-featured IoC Container for .NET
3030
- __DryIoc__ (source code) [![NuGet Badge](https://buildstats.info/nuget/DryIoc)](https://www.nuget.org/packages/DryIoc)
3131
- __DryIoc.Internal__ (source code with public types made internal) [![NuGet Badge](https://buildstats.info/nuget/DryIoc.Internal)](https://www.nuget.org/packages/DryIoc.Internal)
3232

33-
- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.5.0) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
33+
- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.5.1) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
3434
- [Extensions and Companions](Extensions.md)
3535
- [Documentation][WikiHome] (is fully moved from the BitBucket wiki to the _docs\DryIoc.Docs_ inside this GitHub repo on 2020-09-01)
3636
- [Contribution guide](CONTRIBUTING.md)

docs/DryIoc.Docs/VersionHistory.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Version History
22
---------------
33

4+
## v4.5.1 Bug-fix release / 2020-10-28
5+
6+
- fixed: #332 Delegate returning null throws exception RegisteredDelegateResultIsNotOfServiceType
7+
- fixed: #340 WaitForItemIsSet waits forever in v4.5.0 for the case like that `Singleton(Func<Singlton> f)`
8+
49
## v4.5.0 Performance and feature release / 2020-10-12
510

611
- added: #203 [Perf] Avoid locking of service creation in scope if possible

nuspecs/DryIoc.Internal.nuspec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>DryIoc.Internal</id>
5-
<version>4.5.0</version>
5+
<version>4.5.1</version>
66

77
<authors>Maksim Volkau</authors>
88

@@ -17,6 +17,11 @@
1717
<releaseNotes>
1818
<![CDATA[
1919
20+
## v4.5.1 Bug-fix release
21+
22+
- fixed: #332 Delegate returning null throws exception RegisteredDelegateResultIsNotOfServiceType
23+
- fixed: #340 WaitForItemIsSet waits forever in v4.5.0 for the case like that `Singleton(Func<Singlton> f)`
24+
2025
## v4.5.0 Performance and feature release
2126
2227
- added: #203 [Perf] Avoid locking of service creation in scope if possible

nuspecs/DryIoc.nuspec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>DryIoc</id>
5-
<version>4.5.0</version>
5+
<version>4.5.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2013-2020 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
@@ -15,6 +15,11 @@
1515
<releaseNotes>
1616
<![CDATA[
1717
18+
## v4.5.1 Bug-fix release
19+
20+
- fixed: #332 Delegate returning null throws exception RegisteredDelegateResultIsNotOfServiceType
21+
- fixed: #340 WaitForItemIsSet waits forever in v4.5.0 for the case like that `Singleton(Func<Singlton> f)`
22+
1823
## v4.5.0 Performance and feature release
1924
2025
- added: #203 [Perf] Avoid locking of service creation in scope if possible

src/DryIoc/DryIoc.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFrameworks Condition="'$(NoLegacy)' == 'true'">net45;netstandard1.0;netstandard1.3;netstandard2.0</TargetFrameworks>
66

77
<Product>DryIoc</Product>
8-
<VersionPrefix>4.5.0</VersionPrefix>
8+
<VersionPrefix>4.5.1</VersionPrefix>
99
<VersionSuffix></VersionSuffix>
1010

1111
<AssemblyName>$(Product)</AssemblyName>
@@ -18,6 +18,11 @@
1818
<PackageReleaseNotes>
1919
<![CDATA[
2020
21+
## v4.5.1 Bug-fix release
22+
23+
- fixed: #332 Delegate returning null throws exception RegisteredDelegateResultIsNotOfServiceType
24+
- fixed: #340 WaitForItemIsSet waits forever in v4.5.0 for the case like that `Singleton(Func<Singlton> f)`
25+
2126
## v4.5.0 Performance and feature release
2227
2328
- added: #203 [Perf] Avoid locking of service creation in scope if possible

0 commit comments

Comments
 (0)