Skip to content

Commit

Permalink
releasing DryIoc v5.3.3; releasing DryIoc.MS.DI v6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Feb 16, 2023
1 parent fb34cbd commit a995c0c
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 13 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/v5.3.2) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
- [Release Notes](https://github.com/dadhi/DryIoc/releases/tag/v5.3.3) :: [Previous Versions](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/VersionHistory.md)
- [Extensions and Companions](Extensions.md)
- [Live Documentation][WikiHome] created with [CsToMd](https://github.com/dadhi/CsToMd)
- [Contribution guide](CONTRIBUTING.md)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ image:
- Ubuntu
- macOS

version: 5.3.2-build-{build}
version: 5.3.3-build-{build}

test: off

Expand Down
10 changes: 5 additions & 5 deletions build/NuGetPublish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set PACKAGES=..\.dist\packages
set SOURCE=https://api.nuget.org/v3/index.json
set /p APIKEY=<"..\..\ApiKey.txt"

dotnet nuget push "%PACKAGES%\DryIoc.dll.5.3.2.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.5.3.2.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.Internal.5.3.2.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.dll.5.3.3.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.5.3.3.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.Internal.5.3.3.nupkg" -k %APIKEY% -s %SOURCE%

rem dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.DependencyInjection.3.0.3.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.DependencyInjection.6.1.1.nupkg" -k %APIKEY% -s %SOURCE%
dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.DependencyInjection.src.6.1.1.nupkg" -k %APIKEY% -s %SOURCE%
rem dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.DependencyInjection.AspNetCore2_1.3.0.3.nupkg" -k %APIKEY% -s %SOURCE%
rem dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.DependencyInjection.src.3.0.1.nupkg" -k %APIKEY% -s %SOURCE%

rem dotnet nuget push "%PACKAGES%\DryIoc.Microsoft.Hosting.1.0.0-preview-01.nupkg" -k %APIKEY% -s %SOURCE%

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

## v5.3.3 Bug-fix release / 2023-02-23

- fixed: #555 Is there anyway to apply ConcreteTypeDynamicRegistrations to Rules.MicrosoftDependencyInjectionRules
- fixed: #557 Rules.WithFactorySelector(Rules.SelectLastRegisteredFactory()) allows to Resolve the keyed service as non-keyed

## v5.3.2 Bug-fix release / 2023-01-09

- fixed: #554 System.NullReferenceException: Object reference not set to an instance of an object.
Expand Down
8 changes: 7 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>5.3.2</version>
<version>5.3.3</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -14,6 +14,12 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v5.3.3 Bug-fix release
- fixed: #555 Is there anyway to apply ConcreteTypeDynamicRegistrations to Rules.MicrosoftDependencyInjectionRules
- fixed: #557 Rules.WithFactorySelector(Rules.SelectLastRegisteredFactory()) allows to Resolve the keyed service as non-keyed
## v5.3.2 Bug-fix release
- fixed: #554 System.NullReferenceException: Object reference not set to an instance of an object.
Expand Down
9 changes: 7 additions & 2 deletions nuspecs/DryIoc.Microsoft.DependencyInjection.src.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>
<id>DryIoc.Microsoft.DependencyInjection.src</id>
<version>6.1.0</version>
<version>6.1.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -13,6 +13,11 @@
<tags>DryIoc;Dependency Injection;DI;IoC;Asp;AspNet;vNext;AspNetCore;NetCore</tags>
<releaseNotes>
<![CDATA[
## v6.1.1
- fixed: #555 Avoiding cloning the container that already has the MicrosoftDependencyInjectionRules and RegistrySharing.Share
- updated DryIoc to v5.3.3
## v6.1.0
Expand All @@ -24,7 +29,7 @@
</releaseNotes>
<dependencies>
<group>
<dependency id="DryIoc" version="5.2.2" />
<dependency id="DryIoc" version="5.3.3" />
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="6.0.0" />
</group>
</dependencies>
Expand Down
8 changes: 7 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>5.3.2</version>
<version>5.3.3</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2013-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/DryIoc</projectUrl>
Expand All @@ -14,6 +14,12 @@
<tags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory</tags>
<releaseNotes>
<![CDATA[
## v5.3.3 Bug-fix release
- fixed: #555 Is there anyway to apply ConcreteTypeDynamicRegistrations to Rules.MicrosoftDependencyInjectionRules
- fixed: #557 Rules.WithFactorySelector(Rules.SelectLastRegisteredFactory()) allows to Resolve the keyed service as non-keyed
## v5.3.2 Bug-fix release
- fixed: #554 System.NullReferenceException: Object reference not set to an instance of an object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks>netstandard2.0</TargetFrameworks>

<Product>DryIoc.Microsoft.DependencyInjection</Product>
<VersionPrefix>6.1.0</VersionPrefix>
<VersionPrefix>6.1.1</VersionPrefix>
<VersionSuffix></VersionSuffix>

<AssemblyName>$(Product)</AssemblyName>
Expand All @@ -15,6 +15,12 @@
<PackageTags>DryIoc;Dependency Injection;DI;IoC;Asp;AspNet;vNext;AspNetCore;NetCore</PackageTags>
<PackageReleaseNotes>
<![CDATA[
## v6.1.1
- fixed: #555 Avoiding cloning the container that already has the MicrosoftDependencyInjectionRules and RegistrySharing.Share
- updated DryIoc to v5.3.3
## v6.1.0
- added: RegisterDesciptor overload with IfAlreadyRegistered and optional serviceKey argument
Expand Down
8 changes: 7 additions & 1 deletion src/DryIoc/DryIoc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>

<Product>DryIoc</Product>
<VersionPrefix>5.3.2</VersionPrefix>
<VersionPrefix>5.3.3</VersionPrefix>
<VersionSuffix></VersionSuffix>

<AssemblyName>$(Product)</AssemblyName>
Expand All @@ -15,6 +15,12 @@
<PackageTags>IoC Container Inversion-of-Control DI Dependency-Injection DRY Service-Provider Factory FastExpressionCompiler ImTools</PackageTags>
<PackageReleaseNotes>
<![CDATA[
## v5.3.3 Bug-fix release
- fixed: #555 Is there anyway to apply ConcreteTypeDynamicRegistrations to Rules.MicrosoftDependencyInjectionRules
- fixed: #557 Rules.WithFactorySelector(Rules.SelectLastRegisteredFactory()) allows to Resolve the keyed service as non-keyed
## v5.3.2 Bug-fix release
- fixed: #554 System.NullReferenceException: Object reference not set to an instance of an object.
Expand Down

0 comments on commit a995c0c

Please sign in to comment.