Skip to content

Commit

Permalink
update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gottscj committed Dec 10, 2022
1 parent d7ff0e3 commit 69a9359
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
10 changes: 9 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@

## Change log

### v1.9.0 (2022-12-10)
- Update to Hangfire.Core 1.7.32
- Update MongoDB.Driver to 2.18.0
- Using manual serialization to not be subject to serializer conventions (#328)
- Returns IGlobalConfiguration<MongoStorage> instead of MongoStorage in all UseMongoStorage (#317)
- Added indexes (#330)
- Merge JobQueueDto fields into JobDto (schema change, requires migration)

### v1.7.3 (2022-08-24)
- Fix hardcoded timeout in MongoConnectException message (#315)
- Update to Hangfire.Core 1.7.31
- Update MongoDB.Driver to 2.17.1
-

### v1.7.2 (2022-06-13)
- Update to Hangfire.Core 1.7.30

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Description />
<Version>1.7.3</Version>
<Version>1.9.0</Version>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Copyright>
<Authors>Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Description />
<Version>1.7.3</Version>
<Version>1.9.0</Version>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Copyright>
<Authors>Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>Hangfire.Mongo.Sample.NETCore</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>Hangfire.Mongo.Sample.NETCore</PackageId>
<Version>1.7.3</Version>
<Version>1.9.0</Version>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2019 Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Copyright>
<Authors>Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Authors>
Expand Down
1 change: 0 additions & 1 deletion src/Hangfire.Mongo.Tests/Hangfire.Mongo.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<ProjectReference Include="../Hangfire.Mongo/Hangfire.Mongo.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EphemeralMongo6" Version="0.1.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
Expand Down
15 changes: 9 additions & 6 deletions src/Hangfire.Mongo/Hangfire.Mongo.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>1.7.3</VersionPrefix>
<VersionPrefix>1.9.0</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);CS0618</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -21,11 +21,14 @@
<owners>Sergey Zwezdin, Jonas Gottschau</owners>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<PackageTags>Hangfire AspNet OWIN MongoDB CosmosDB Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues</PackageTags>
<PackageReleaseNotes>1.7.3
- Fix hardcoded timeout in MongoConnectException message (#315)
- Update to Hangfire.Core 1.7.31
- Update MongoDB.Driver to 2.17.1
</PackageReleaseNotes>
<PackageReleaseNotes>1.9.0
- Update to Hangfire.Core 1.7.32
- Update MongoDB.Driver to 2.18.0
- Using manual serialization to not be subject to serializer conventions (#328)
- Returns IGlobalConfiguration&lt;MongoStorage &gt; instead of MongoStorage in all UseMongoStorage (#317)
- Added indexes (#330)
- Merge JobQueueDto fields into JobDto (schema change, requires migration)
</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!--<PackageLicenseUrl>https://raw.githubusercontent.com/sergun/Hangfire.Mongo/master/LICENSE</PackageLicenseUrl>-->
<PackageProjectUrl>https://github.com/sergeyzwezdin/Hangfire.Mongo</PackageProjectUrl>
Expand Down

0 comments on commit 69a9359

Please sign in to comment.