Skip to content

Commit 2c0cb17

Browse files
committed
bumped version to 1.1.0
1 parent b858329 commit 2c0cb17

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

License.txt LICENSE

File renamed without changes.

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Yisoft.Crontab #
2-
cron expression parser for dotnet core.
2+
3+
[![Build status](https://ci.appveyor.com/api/projects/status/mgms413qy8s0y181?svg=true)](https://ci.appveyor.com/project/yiteam/crontab)
4+
5+
cron expression parser and executor for dotnet core.
36

47
> this project based on [NCrontab-Advanced](https://github.com/jcoutch/NCrontab-Advanced).
58
6-
**If you have any problems, make sure to file an issue here on Github.**
9+
If you have any problems, make sure to file an issue here on Github.
710

811
# Support for the following cron expressions #
912

crontab.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{506B9CDF-EED7-4D70-9B61-F07DDDB55D2C}"
99
ProjectSection(SolutionItems) = preProject
1010
.gitignore = .gitignore
11-
License.txt = License.txt
11+
LICENSE = LICENSE
1212
NuGet.Config = NuGet.Config
1313
README.md = README.md
1414
EndProjectSection
@@ -42,8 +42,8 @@ Global
4242
{3BEA7ED9-CB28-4428-99DE-FE31F7A4383F} = {C698C263-3412-4F65-8CF9-98CF9B31F0F1}
4343
EndGlobalSection
4444
GlobalSection(ExtensibilityGlobals) = postSolution
45-
RESX_AutoCreateNewLanguageFiles = True
46-
RESX_ResXSortingComparison = InvariantCultureIgnoreCase
4745
RESX_SortFileContentOnSave = True
46+
RESX_ResXSortingComparison = InvariantCultureIgnoreCase
47+
RESX_AutoCreateNewLanguageFiles = True
4848
EndGlobalSection
4949
EndGlobal

src/Yisoft.Crontab/CrontabSchedule.cs

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public IEnumerable<DateTime> GetNextOccurrences(DateTime baseTime, DateTime endT
6161
occurrence = GetNextOccurrence(occurrence, endTime)) yield return occurrence;
6262
}
6363

64-
6564
private int Increment(IEnumerable<ITimeFilter> filters, int value, int defaultValue, out bool overflow)
6665
{
6766
var nextValue = filters.Select(x => x.Next(value)).Where(x => x > value).Min() ?? defaultValue;

src/Yisoft.Crontab/Yisoft.Crontab.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Description>cron expression parser for dotnet core.</Description>
4+
<Description>cron expression parser and executor for dotnet core.</Description>
55
<Copyright>Copyright © Yi.TEAM. All rights reserved.</Copyright>
66
<AssemblyTitle>Yisoft.Crontab</AssemblyTitle>
7-
<VersionPrefix>1.0.0</VersionPrefix>
7+
<VersionPrefix>1.1.0</VersionPrefix>
88
<Authors>ymind.chan@yi.team</Authors>
99
<TargetFrameworks>netstandard1.6;net46;net451;net45;net40</TargetFrameworks>
1010
<AssemblyName>Yisoft.Crontab</AssemblyName>

0 commit comments

Comments
 (0)