Skip to content

Commit

Permalink
Release 0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
MarLoe committed Oct 28, 2018
1 parent d00f391 commit 7ce0676
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
8 changes: 7 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@

## What's New (03/09/2018)
## What's New (28/10/2018)

### v0.5.12
- Using $dec and $inc operators for counters
- Merging HashDto fields into one document
- Deprecating direct db access and queueproviders
- Removed use of $slice (#151)

### v0.5.11
- Fixed duplicate key exception in advanced setups (#70)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Description />
<Version>0.5.11</Version>
<Version>0.5.12</Version>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2017 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>0.5.11</Version>
<Version>0.5.12</Version>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2017 Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Copyright>
<Authors>Sergey Zwezdin, Martin Lobger, Jonas Gottschau</Authors>
Expand Down
4 changes: 2 additions & 2 deletions src/Hangfire.Mongo.Sample/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
6 changes: 3 additions & 3 deletions src/Hangfire.Mongo.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyInformationalVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
[assembly: AssemblyInformationalVersion("0.5.12")]
10 changes: 8 additions & 2 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>0.5.11</VersionPrefix>
<VersionPrefix>0.5.12</VersionPrefix>
<TargetFrameworks>net46;net45;netstandard1.5</TargetFrameworks>
<NoWarn>$(NoWarn);CS0618</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -22,7 +22,13 @@
<owners>Sergey Zwezdin</owners>
<Description>MongoDB storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<PackageTags>Hangfire AspNet OWIN MongoDB Long-Running Background Fire-And-Forget Delayed Recurring Tasks Jobs Scheduler Threading Queues</PackageTags>
<PackageReleaseNotes>0.5.11
<PackageReleaseNotes>0.5.12
- Using $dec and $inc operators for counters
- Merging HashDto fields into one document
- Deprecating direct db access and queueproviders
- Removed use of $slice (#151)

0.5.11
- Fixed duplicate key exception in advanced setups (#70)
- Fixed DeadLock on concurrent environment (#139)
- Update to latest Hangfire
Expand Down
6 changes: 3 additions & 3 deletions src/Hangfire.Mongo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyInformationalVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
[assembly: AssemblyInformationalVersion("0.5.12")]
[assembly: InternalsVisibleTo("Hangfire.Mongo.Tests")]

0 comments on commit 7ce0676

Please sign in to comment.