Skip to content

Commit a7127d6

Browse files
author
maximv
committed
releasing DryIoc v4.3.3 and DI.MEF v6.0.1
1 parent 3fa8fc2 commit a7127d6

File tree

8 files changed

+30
-8
lines changed

8 files changed

+30
-8
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/v4.3.2) :: [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.3.3) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
3434
- [Extensions and Companions](Extensions.md)
3535
- [Documentation][WikiHome]
3636
- [Contribution guide](CONTRIBUTING.md)

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 4.3.2-preview-01-b{build}
1+
version: 4.3.3-preview-01-b{build}
22
os: Visual Studio 2017
33
test: off
44

docs/DryIoc.Docs/VersionHistory.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Version History
22
---------------
3+
## v4.3.3 Bug-fix release / 2020-08-27
4+
5+
- fixed: #310 Ensure that FEC.LightExpression.ILGeneratorHacks does not crash if some method is not reflected
36

47
## v4.3.2 Bug-fix release / 2020-08-15
58

nuspecs/DryIoc.Internal.nuspec

+5-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>4.3.2</version>
5+
<version>4.3.3</version>
66

77
<authors>Maksim Volkau</authors>
88

@@ -15,6 +15,10 @@
1515
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
1616
<releaseNotes>
1717
<![CDATA[
18+
## v4.3.3 Bug-fix release
19+
20+
- fixed: #310 Ensure that FEC.LightExpression.ILGeneratorHacks does not crash if some method is not reflected
21+
1822
## v4.3.2 Bug-fix release
1923
2024
- fixed: #303 Open Generic Singleton do not provide same instance for Resolve and ResolveMany

nuspecs/DryIoc.MefAttributedModel.nuspec

+6-2
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>
44
<id>DryIoc.MefAttributedModel</id>
5-
<version>6.0.0</version>
5+
<version>6.0.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2013-2020 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
@@ -14,6 +14,10 @@
1414
<releaseNotes>
1515
<![CDATA[
1616
17+
## v6.0.1
18+
19+
- uses ContainerException changes from the DryIoc v4.3.3
20+
1721
## v6.0.0
1822
1923
- Using the System.ComponentModel.Composition (netstandard2.0+ and netcoreapp2.0+) NuGet package instead of framework assembly reference
@@ -24,7 +28,7 @@
2428
</releaseNotes>
2529
<dependencies>
2630
<group>
27-
<dependency id="DryIoc" version="4.3.2" />
31+
<dependency id="DryIoc" version="4.3.3" />
2832
<dependency id="DryIocAttributes" version="6.0.0" />
2933
</group>
3034
</dependencies>

nuspecs/DryIoc.nuspec

+5-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>4.3.2</version>
5+
<version>4.3.3</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2013-2020 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
@@ -13,6 +13,10 @@
1313
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
1414
<releaseNotes>
1515
<![CDATA[
16+
## v4.3.3 Bug-fix release
17+
18+
- fixed: #310 Ensure that FEC.LightExpression.ILGeneratorHacks does not crash if some method is not reflected
19+
1620
## v4.3.2 Bug-fix release
1721
1822
- fixed: #303 Open Generic Singleton do not provide same instance for Resolve and ResolveMany

src/DryIoc.MefAttributedModel/DryIoc.MefAttributedModel.csproj

+4-1
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.MefAttributedModel</Product>
8-
<VersionPrefix>6.0.0</VersionPrefix>
8+
<VersionPrefix>6.0.1</VersionPrefix>
99
<VersionSuffix></VersionSuffix>
1010

1111
<AssemblyName>$(Product)</AssemblyName>
@@ -17,6 +17,9 @@
1717
<PackageTags>MEF Composition IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</PackageTags>
1818
<PackageReleaseNotes>
1919
<![CDATA[
20+
## v6.0.1
21+
22+
- uses ContainerException changes from the DryIoc v4.3.3
2023
2124
## v6.0.0
2225

src/DryIoc/DryIoc.csproj

+5-1
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.3.2</VersionPrefix>
8+
<VersionPrefix>4.3.3</VersionPrefix>
99
<VersionSuffix></VersionSuffix>
1010

1111
<AssemblyName>$(Product)</AssemblyName>
@@ -17,6 +17,10 @@
1717
<PackageTags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory FastExpressionCompiler ImTools</PackageTags>
1818
<PackageReleaseNotes>
1919
<![CDATA[
20+
## v4.3.3 Bug-fix release
21+
22+
- fixed: #310 Ensure that FEC.LightExpression.ILGeneratorHacks does not crash if some method is not reflected
23+
2024
## v4.3.2 Bug-fix release
2125
2226
- fixed: #303 Open Generic Singleton do not provide same instance for Resolve and ResolveMany

0 commit comments

Comments
 (0)