Skip to content

Commit

Permalink
Merge pull request #589 from seesharper/bump-version-number
Browse files Browse the repository at this point in the history
Bump version number and dependencies
  • Loading branch information
seesharper committed May 8, 2023
2 parents 9ed86cc + b6ee6b4 commit db65698
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/LightInject.Benchmarks/LightInject.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="DryIoc" Version="5.2.2" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
<PackageReference Include="DryIoc" Version="5.4.0" />
<PackageReference Include="Grace" Version="7.2.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="SimpleInjector" Version="5.4.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="SimpleInjector" Version="5.4.1" />
<PackageReference Include="ImTools" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/LightInject.Benchmarks/ListBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace LightInject.Benchmarks
{
[SimpleJob(launchCount: 3, warmupCount: 10, targetCount: 30)]
[SimpleJob(launchCount: 3, warmupCount: 10)]
public class ListInsertTests
{
private DisposableFoo[] items = new DisposableFoo[10];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace LightInject.Benchmarks
{
[SimpleJob(launchCount: 1, warmupCount: 1, targetCount: 3)]
[SimpleJob(launchCount: 1, warmupCount: 1)]
[MemoryDiagnoser]
public class PerRequestDisposableBenchmarks
{
Expand Down
10 changes: 5 additions & 5 deletions src/LightInject.Tests/LightInject.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
<DefineConstants>USE_ASSEMBLY_VERIFICATION;USE_ASYNCDISPOSABLE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TestTargetFramework)' == 'net46' OR '$(TestTargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PackageReference Include="coverlet.collector" Version="3.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="LightMock" Version="2.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.7.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xUnit.Analyzers" Version="1.0.0" />
<PackageReference Include="xUnit.Analyzers" Version="1.1.0" />
<PackageReference Include="ILVerifier" Version="0.0.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/LightInject/LightInject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************
LightInject version 6.6.1
LightInject version 6.6.4
http://www.lightinject.net/
http://twitter.com/bernhardrichter
******************************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion src/LightInject/LightInject.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.0;netcoreapp3.1;net462</TargetFrameworks>
<Version>6.6.3</Version>
<Version>6.6.4</Version>
<Authors>Bernhard Richter</Authors>
<PackageProjectUrl>https://www.lightinject.net</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit db65698

Please sign in to comment.