Skip to content

Commit 6f22665

Browse files
committed
releasing DryIoc v5.3.1
1 parent 38f6830 commit 6f22665

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

README.md

+1-1
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/v5.3.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/v5.3.1) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
3434
- [Extensions and Companions](Extensions.md)
3535
- [Live Documentation][WikiHome] created with [CsToMd](https://github.com/dadhi/CsToMd)
3636
- [Contribution guide](CONTRIBUTING.md)

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ image:
33
- Ubuntu
44
- macOS
55

6-
version: 5.3.0-build-{build}
6+
version: 5.3.1-build-{build}
77

88
test: off
99

docs/DryIoc.Docs/VersionHistory.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Version History
22
---------------
3+
## v5.3.1 Bug-fix release / 2022-11-28
4+
5+
-fixed: #546 Generic type constraint resolution doesn't see arrays as IEnumerable<>
6+
37
## v5.3.0 Small feature and bug-fix release / 2022-11-10
48

59
-fixed: #536 DryIoc Exception in a Constructor of a Dependency does tunnel through Resolve call

nuspecs/DryIoc.Internal.nuspec

+6-1
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>5.3.0</version>
5+
<version>5.3.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2013-2022 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
@@ -14,6 +14,11 @@
1414
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
1515
<releaseNotes>
1616
<![CDATA[
17+
## v5.3.1 Bug-fix release
18+
19+
-fixed: #546 Generic type constraint resolution doesn't see arrays as IEnumerable<>
20+
21+
1722
## v5.3.0 Small feature and bug-fix release
1823
1924
-fixed: #536 DryIoc Exception in a Constructor of a Dependency does tunnel through Resolve call

nuspecs/DryIoc.nuspec

+6-1
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>5.3.0</version>
5+
<version>5.3.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2013-2022 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
@@ -14,6 +14,11 @@
1414
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
1515
<releaseNotes>
1616
<![CDATA[
17+
## v5.3.1 Bug-fix release
18+
19+
-fixed: #546 Generic type constraint resolution doesn't see arrays as IEnumerable<>
20+
21+
1722
## v5.3.0 Small feature and bug-fix release
1823
1924
-fixed: #536 DryIoc Exception in a Constructor of a Dependency does tunnel through Resolve call

src/DryIoc/DryIoc.csproj

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
44

55
<Product>DryIoc</Product>
6-
<VersionPrefix>5.3.0</VersionPrefix>
6+
<VersionPrefix>5.3.1</VersionPrefix>
77
<VersionSuffix></VersionSuffix>
88

99
<AssemblyName>$(Product)</AssemblyName>
@@ -15,6 +15,11 @@
1515
<PackageTags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory FastExpressionCompiler ImTools</PackageTags>
1616
<PackageReleaseNotes>
1717
<![CDATA[
18+
## v5.3.1 Bug-fix release
19+
20+
-fixed: #546 Generic type constraint resolution doesn't see arrays as IEnumerable<>
21+
22+
1823
## v5.3.0 Small feature and bug-fix release
1924
2025
-fixed: #536 DryIoc Exception in a Constructor of a Dependency does tunnel through Resolve call

0 commit comments

Comments
 (0)