You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2011/05/30 19:46:46 UTC

svn commit: r1129271 - in /trafficserver/traffic/branches/3.0.x: STATUS configure.ac

Author: zwoop
Date: Mon May 30 17:46:46 2011
New Revision: 1129271

URL: http://svn.apache.org/viewvc?rev=1129271&view=rev
Log:
Changed the TS_VERSION, and updated the STATUS file

Modified:
    trafficserver/traffic/branches/3.0.x/STATUS
    trafficserver/traffic/branches/3.0.x/configure.ac

Modified: trafficserver/traffic/branches/3.0.x/STATUS
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/3.0.x/STATUS?rev=1129271&r1=1129270&r2=1129271&view=diff
==============================================================================
--- trafficserver/traffic/branches/3.0.x/STATUS (original)
+++ trafficserver/traffic/branches/3.0.x/STATUS Mon May 30 17:46:46 2011
@@ -1,4 +1,4 @@
-Traffic Server 2.1 STATUS:                                              -*-text-*-
+Traffic Server 3.0 STATUS:                                              -*-text-*-
 Last modified at [$Date$]
 
 The current version of this file can be found at:
@@ -10,19 +10,9 @@ Release history:
     [NOTE that x.{odd}.z versions are strictly Alpha/Beta releases,
           while x.{even}.z versions are Stable/GA releases.]
 
-    2.1.9-unstable  : Released on May 30, 2011
-    2.1.8-unstable  : Released on May 5, 2011
-    2.1.7-unstable  : Released on March 21, 2011
-    2.1.6-unstable  : Released on March 3, 2011
-    2.1.5-unstable  : Released on January 12, 2011
-    2.1.4-unstable  : Released on November 12, 2010
-    2.1.3-unstable  : Released on September 23, 2010
-    2.1.2-unstable  : Released on August 31, 2010
-    2.1.1-unstable  : Released on June 7, 2010
-    2.1.0-unstable  : Released on May 17, 2010
+    3.0.0           : Released on <xyz>, 2011
     2.0.1           : Released on August 31, 2010
     2.0.0           : Released on April 28, 2010
-    2.0.0-alpha     : Released March 13, 2010
 
 
 Contributors looking for a mission:
@@ -36,12 +26,30 @@ Contributors looking for a mission:
   * Open bugs in the bug database.
 
 
+CURRENT RELEASE NOTES:
+
+
 RELEASE SHOWSTOPPERS:
 
-A list of all bugs scheduled for the next release can be found at
+A list of all bugs open for the next v3.0.1 release can be found at
+
+  http://s.apache.org/ts-3.0.1
+
+
+PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
+  [ start all new proposals below, under PATCHES PROPOSED. ]
+
 
-  http://s.apache.org/ts-2.1.9
+PATCHES PROPOSED TO BACKPORT FROM TRUNK:
+  [ New proposals should be added at the end of the list ]
 
+  * remap: If we encounter parsing errors of remap.config, i.e. a broken
+           configuration, we end up adding it to the remap containers
+           anyways. This is not a broken configuration, it's also a
+           configuration that is free()'d back to the heap. This is bad.
+    Trunk patch: http://svn.apache.org/viewvc?rev=1129268&view=rev
+    Jira: https://issues.apache.org/jira/browse/TS-798
+    +1: zwoop
 
 RELEASE PROCESS
 

Modified: trafficserver/traffic/branches/3.0.x/configure.ac
URL: http://svn.apache.org/viewvc/trafficserver/traffic/branches/3.0.x/configure.ac?rev=1129271&r1=1129270&r2=1129271&view=diff
==============================================================================
--- trafficserver/traffic/branches/3.0.x/configure.ac (original)
+++ trafficserver/traffic/branches/3.0.x/configure.ac Mon May 30 17:46:46 2011
@@ -32,8 +32,8 @@
 # Version number is calculated as MAJOR * 1000000 + MINOR * 1000 + MICRO
 # Version string is in the form of MAJOR.MINOR.MICRO[sufix]
 #
-m4_define([TS_VERSION_S],[2.1.9-unstable])
-m4_define([TS_VERSION_N],[2001009])
+m4_define([TS_VERSION_S],[3.0.0])
+m4_define([TS_VERSION_N],[3000000])
 
 AC_INIT([Apache Traffic Server], TS_VERSION_S(), [dev@trafficserver.apache.org], [trafficserver],[http://trafficserver.apache.org])
 AC_PREREQ([2.59])