Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloszKrajewski committed May 8, 2021
1 parent 097b1c9 commit e48e3eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## 0.1.1 (2021/05/08)
## 0.1.2 (2021/05/08)
* CHANGED: upgraded MySqlConnector to v1
* CHANGED: upgraded Dapper to v2
* CHANGED: updated minimum required versions of dependencies
* BUGFIX: removed PruneInterval setter from interface

## 0.0.20 (2021/04/27)
* CHANGED: keep completed and failed jobs (for a period of time)
Expand Down
6 changes: 3 additions & 3 deletions Common.targets
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<Version>0.1.1</Version>
<AssemblyVersion>0.1.1</AssemblyVersion>
<FileVersion>0.1.1</FileVersion>
<Version>0.1.2</Version>
<AssemblyVersion>0.1.2</AssemblyVersion>
<FileVersion>0.1.2</FileVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Χρόνος -->
Expand Down
2 changes: 1 addition & 1 deletion src/K4os.Xpovoc.Core/Db/ISchedulerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public interface ISchedulerConfig
int RetryLimit { get; }
TimeSpan MaximumRetryInterval { get; }
TimeSpan KeepFinishedJobsPeriod { get; }
TimeSpan PruneInterval { get; set; }
TimeSpan PruneInterval { get; }
}
}

0 comments on commit e48e3eb

Please sign in to comment.