Skip to content

Commit da4e797

Browse files
committed
3.2 release
1 parent f8605af commit da4e797

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

NCrontab.Signed.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>ncrontab.signed</id>
55
<title>NCrontab (Signed)</title>
6-
<version>3.1.0</version>
6+
<version>3.2.0</version>
77
<authors>Atif Aziz</authors>
88
<description>NCrontab is crontab for Microsoft .NET Framework 3.5 and above. It provides parsing and formatting of crontab expressions as well as calculation of occurrences of time based on a schedule expressed in the crontab format.</description>
99
<language>en-US</language>

NCrontab.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33
<metadata>
44
<id>ncrontab</id>
55
<title>NCrontab</title>
6-
<version>3.1.0</version>
6+
<version>3.2.0</version>
77
<authors>Atif Aziz</authors>
88
<description>NCrontab is crontab for Microsoft .NET Framework 3.5 and above. It provides parsing and formatting of crontab expressions as well as calculation of occurrences of time based on a schedule expressed in the crontab format.</description>
99
<language>en-US</language>
1010
<copyright>Copyright &#169; 2008 Atif Aziz. All rights reserved.</copyright>
1111
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
1212
<projectUrl>https://github.com/atifaziz/NCrontab</projectUrl>
1313
<tags>cron schedule time</tags>
14-
<releaseNotes>3.1: CrontabFieldImpl and CrontabFieldAccumulator are now private.
14+
<releaseNotes>3.2: Fixes the following issues:
15+
- Wrong schedule when a crontab field is of the form N/1; remaining values of that field were being ignored.
16+
- CrontabSchedule.TryParse doesn't throw if given a null string as input.
17+
3.1: CrontabFieldImpl and CrontabFieldAccumulator are now private.
1518
3.0: Replaces uses of Converter with Func and therefore requires .NET Framework 3.5 as a minimum.
1619

1720
Release 3.x also makes the library available as a PCL for:

NCrontab/AssemblyInfo.g.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// This code was generated by a tool. Any changes made manually will be lost
22
// the next time this code is regenerated.
3-
// Generated: Thu, 20 Oct 2016 06:50:00 GMT
4-
3+
// Generated: Thu, 20 Oct 2016 06:52:24 GMT
4+
55
using System.Reflection;
6-
7-
[assembly: AssemblyVersion("3.1.20120.0")]
8-
[assembly: AssemblyFileVersion("3.1.20120.650")]
6+
7+
[assembly: AssemblyVersion("3.2.20120.0")]
8+
[assembly: AssemblyFileVersion("3.2.20120.652")]

NCrontab/AssemblyInfo.g.tt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// This code was generated by a tool. Any changes made manually will be lost
99
// the next time this code is regenerated.
1010
// Generated: <#= date.ToString("r") #>
11-
11+
1212
using System.Reflection;
13-
14-
[assembly: AssemblyVersion("3.1.<#= build #>.0")]
15-
[assembly: AssemblyFileVersion("3.1.<#= build #>.<#= revision #>")]
13+
14+
[assembly: AssemblyVersion("3.2.<#= build #>.0")]
15+
[assembly: AssemblyFileVersion("3.2.<#= build #>.<#= revision #>")]

0 commit comments

Comments
 (0)