Skip to content

Commit

Permalink
3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Oct 20, 2016
1 parent f8605af commit da4e797
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion NCrontab.Signed.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>ncrontab.signed</id>
<title>NCrontab (Signed)</title>
<version>3.1.0</version>
<version>3.2.0</version>
<authors>Atif Aziz</authors>
<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>
<language>en-US</language>
Expand Down
7 changes: 5 additions & 2 deletions NCrontab.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@
<metadata>
<id>ncrontab</id>
<title>NCrontab</title>
<version>3.1.0</version>
<version>3.2.0</version>
<authors>Atif Aziz</authors>
<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>
<language>en-US</language>
<copyright>Copyright &#169; 2008 Atif Aziz. All rights reserved.</copyright>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/atifaziz/NCrontab</projectUrl>
<tags>cron schedule time</tags>
<releaseNotes>3.1: CrontabFieldImpl and CrontabFieldAccumulator are now private.
<releaseNotes>3.2: Fixes the following issues:
- Wrong schedule when a crontab field is of the form N/1; remaining values of that field were being ignored.
- CrontabSchedule.TryParse doesn't throw if given a null string as input.
3.1: CrontabFieldImpl and CrontabFieldAccumulator are now private.
3.0: Replaces uses of Converter with Func and therefore requires .NET Framework 3.5 as a minimum.

Release 3.x also makes the library available as a PCL for:
Expand Down
10 changes: 5 additions & 5 deletions NCrontab/AssemblyInfo.g.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
// Generated: Thu, 20 Oct 2016 06:50:00 GMT
// Generated: Thu, 20 Oct 2016 06:52:24 GMT

using System.Reflection;
[assembly: AssemblyVersion("3.1.20120.0")]
[assembly: AssemblyFileVersion("3.1.20120.650")]

[assembly: AssemblyVersion("3.2.20120.0")]
[assembly: AssemblyFileVersion("3.2.20120.652")]
8 changes: 4 additions & 4 deletions NCrontab/AssemblyInfo.g.tt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
// Generated: <#= date.ToString("r") #>

using System.Reflection;
[assembly: AssemblyVersion("3.1.<#= build #>.0")]
[assembly: AssemblyFileVersion("3.1.<#= build #>.<#= revision #>")]

[assembly: AssemblyVersion("3.2.<#= build #>.0")]
[assembly: AssemblyFileVersion("3.2.<#= build #>.<#= revision #>")]

0 comments on commit da4e797

Please sign in to comment.