Skip to content

Commit

Permalink
releasing DryIoc v4.8.7 and DI.MEF v6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Feb 27, 2022
1 parent cd81f3d commit abe02f1
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 9 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.8.6) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v4.8.7) :: [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
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 4.8.6-preview-01-b{build}
version: 4.8.7-preview-01-b{build}
os: Visual Studio 2017
test: off

Expand Down
7 changes: 7 additions & 0 deletions docs/DryIoc.Docs/VersionHistory.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Version History
---------------

## v4.8.7 Bug-fix release / 2022-02-27

- fixed: #435 hangfire use dryioc report ContainerIsDisposed
- fixed: #449 Optional dependency shouldn't treat its own dependencies as optional
- fixed: #451 Compiler-generated type as a service
- fixed: #456 One more regression

## v4.8.6 Bug-fix release / 2022-01-07

- fixed: #446 Resolving a record without registration causes a StackOverflowException
Expand Down
9 changes: 8 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.8.6</version>
<version>4.8.7</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2022 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -14,6 +14,13 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v4.8.7 Bug-fix release
- fixed: #435 hangfire use dryioc report ContainerIsDisposed
- fixed: #449 Optional dependency shouldn't treat its own dependencies as optional
- fixed: #451 Compiler-generated type as a service
- fixed: #456 One more regression
## v4.8.6 Bug-fix release
- fixed: #446 Resolving a record without registration causes a StackOverflowException
Expand Down
9 changes: 6 additions & 3 deletions nuspecs/DryIoc.MefAttributedModel.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>DryIoc.MefAttributedModel</id>
<version>6.1.0</version>
<version>6.2.0</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2021 Maksim Volkau</copyright>
<copyright>Copyright © 2013-2022 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
<license type="expression">MIT</license>
<icon>logo.png</icon>
Expand All @@ -13,6 +13,9 @@
<tags>MEF Composition IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v6.2.0
- Upping the DryIoc to v4.8.7
## v6.1.0
- fixed: #349 ReuseAttribute treats ScopeName as string instead of object type
Expand All @@ -27,7 +30,7 @@
</releaseNotes>
<dependencies>
<group>
<dependency id="DryIoc" version="4.5.2" />
<dependency id="DryIoc" version="4.8.7" />
<dependency id="DryIocAttributes" version="6.1.0" />
</group>
</dependencies>
Expand Down
9 changes: 8 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.8.6</version>
<version>4.8.7</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2022 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -14,6 +14,13 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v4.8.7 Bug-fix release
- fixed: #435 hangfire use dryioc report ContainerIsDisposed
- fixed: #449 Optional dependency shouldn't treat its own dependencies as optional
- fixed: #451 Compiler-generated type as a service
- fixed: #456 One more regression
## v4.8.6 Bug-fix release
- fixed: #446 Resolving a record without registration causes a StackOverflowException
Expand Down
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.MefAttributedModel</Product>
<VersionPrefix>6.1.0</VersionPrefix>
<VersionPrefix>6.2.0</VersionPrefix>
<VersionSuffix></VersionSuffix>

<AssemblyName>$(Product)</AssemblyName>
Expand All @@ -17,6 +17,9 @@
<PackageTags>MEF Composition IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</PackageTags>
<PackageReleaseNotes>
<![CDATA[
## v6.2.0
- Upping the DryIoc to v4.8.7
## v6.1.0
- fixed: #349 ReuseAttribute treats ScopeName as string instead of object type
Expand Down
9 changes: 8 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.8.6</VersionPrefix>
<VersionPrefix>4.8.7</VersionPrefix>
<VersionSuffix></VersionSuffix>

<AssemblyName>$(Product)</AssemblyName>
Expand All @@ -17,6 +17,13 @@
<PackageTags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory FastExpressionCompiler ImTools</PackageTags>
<PackageReleaseNotes>
<![CDATA[
## v4.8.7 Bug-fix release
- fixed: #435 hangfire use dryioc report ContainerIsDisposed
- fixed: #449 Optional dependency shouldn't treat its own dependencies as optional
- fixed: #451 Compiler-generated type as a service
- fixed: #456 One more regression
## v4.8.6 Bug-fix release
- fixed: #446 Resolving a record without registration causes a StackOverflowException
Expand Down

0 comments on commit abe02f1

Please sign in to comment.