Skip to content

Commit

Permalink
Preparing 2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma committed Apr 9, 2012
1 parent b2d1db3 commit 504464e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion Quartz.build
Expand Up @@ -37,7 +37,8 @@


<target name="build">
<call target="build-${target.framework}" />
<call target="build-3.5" />
<call target="build-4.0" />
</target>

<target name="build-all">
Expand Down
2 changes: 1 addition & 1 deletion Quartz.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Quartz</id>
<version>2.0.0-beta2</version>
<version>2.0.0</version>
<authors>Marko Lahma</authors>
<description>Quartz.NET Scheduling Framework for .NET Platform</description>
<language>en-US</language>
Expand Down
5 changes: 3 additions & 2 deletions changelog.txt
Expand Up @@ -2,18 +2,19 @@ QUARTZ.NET CHANGELOG
==============================
http://www.quartz-scheduler.net

Release 2.0 Release Candidate 1, Apr xx, 2012
Release 2.0, Apr 9, 2012
--------------------------------

This release contains some bug fixes.

POSSIBLE BREAKING CHANGES (since 2.0 beta 2)

* DateBuilder now uses the UTC offset that is active for the date constructed (earlier it was always current offset)
* DateBuilder now uses the UTC offset that is active for the date constructed (earlier it was always offset of DateOffset.Now)

FIXES

* Possible bug with triggers left/stuck in ACQUIRED state (QTZ-179)
* More checks to CalendarIntevalTrigger for daylight savings


Release 2.0 beta 2, Dec 31, 2011
Expand Down
3 changes: 1 addition & 2 deletions readme.txt
@@ -1,4 +1,4 @@
QUARTZ JOB SCHEDULER .NET, 2.0 beta 2, December 31, 2011
QUARTZ JOB SCHEDULER .NET, 2.0, Apr 9, 2012
-----------------------------------------------------------------

http://www.quartz-scheduler.net/
Expand Down Expand Up @@ -32,7 +32,6 @@ No known issues at the moment.
3. RELEASE INFO
----------------

This is the Quartz.NET development path towards version 2.0.
This release corresponds to Java Quartz version 2.1.

This version is a major overhaul of of Quartz(.NET) 1.x codebase. Now
Expand Down
6 changes: 3 additions & 3 deletions server/AssemblyInfo.cs
Expand Up @@ -11,17 +11,17 @@
[assembly: AssemblyConfiguration("net-3.5.win32; Release")]
#endif

[assembly: AssemblyProduct("Quarz.NET Server 2.0 beta 2")]
[assembly: AssemblyProduct("Quarz.NET Server 2.0")]
[assembly: AssemblyDescription("Quartz Scheduling Server for .NET")]
[assembly : AssemblyCompany("http://quartznet.sourceforge.net/")]
[assembly : AssemblyCopyright("Copyright 2007-2010 Marko Lahma")]
[assembly : AssemblyCopyright("Copyright 2007-2012 Marko Lahma")]
[assembly: AssemblyTrademark("Apache License, Version 2.0")]
[assembly : AssemblyCulture("")]
//[assembly: CLSCompliant(true)]
[assembly: ComVisible(false)]


[assembly: AssemblyVersion("2.0.0.200")]
[assembly: AssemblyVersion("2.0.0.400")]


#if STRONG
Expand Down
8 changes: 4 additions & 4 deletions src/AssemblyInfo.cs
Expand Up @@ -17,19 +17,19 @@
#endif

#if NET_40
[assembly: AssemblyProduct("Quarz.NET 2.0 beta 2 for .NET 4.0")]
[assembly: AssemblyProduct("Quarz.NET 2.0 for .NET 4.0")]
#else
[assembly: AssemblyProduct("Quarz.NET 2.0 beta 2 for .NET 3.5 SP1")]
[assembly: AssemblyProduct("Quarz.NET 2.0 for .NET 3.5 SP1")]
#endif
[assembly: AssemblyDescription("Quartz Scheduling Framework for .NET")]
[assembly: AssemblyCompany("http://www.quartz-scheduler.net/")]
[assembly: AssemblyCopyright("Copyright 2001-2010 Terracotta Inc. and partially Marko Lahma")]
[assembly: AssemblyCopyright("Copyright 2001-2012 Terracotta Inc. and partially Marko Lahma")]
[assembly: AssemblyTrademark("Apache License, Version 2.0")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(true)]
[assembly: ComVisible(false)]

[assembly: AssemblyVersion("2.0.0.200")]
[assembly: AssemblyVersion("2.0.0.400")]

[assembly: AssemblyDelaySign(false)]
#if !NET_40
Expand Down

0 comments on commit 504464e

Please sign in to comment.