[svn:parrot] r48146 - in trunk: . docs docs/project include/parrot/oplib src/ops tools/util

coke at svn.parrot.org coke at svn.parrot.org
Wed Jul 21 00:49:09 UTC 2010


Author: coke
Date: Wed Jul 21 00:49:08 2010
New Revision: 48146
URL: https://trac.parrot.org/parrot/changeset/48146

Log:
prep for 2.6

Modified:
   trunk/ChangeLog
   trunk/MANIFEST.generated
   trunk/README
   trunk/VERSION
   trunk/docs/parrothist.pod
   trunk/docs/project/release_manager_guide.pod
   trunk/include/parrot/oplib/core_ops.h
   trunk/src/ops/core_ops.c
   trunk/tools/util/release.json

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/ChangeLog	Wed Jul 21 00:49:08 2010	(r48146)
@@ -1,5 +1,9 @@
 #1 $Id$
 
+2010.07.10     coke
+	* Released 2.6.0
+	See NEWS for more.
+
 2010.06.15     Gerd
 	* Released 2.5.0
 	See NEWS for more.

Modified: trunk/MANIFEST.generated
==============================================================================
--- trunk/MANIFEST.generated	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/MANIFEST.generated	Wed Jul 21 00:49:08 2010	(r48146)
@@ -2,11 +2,11 @@
 # See tools/dev/install_files.pl for documentation on the
 # format of this file.
 # Please re-sort this file after *EVERY* modification
-blib/lib/libparrot.2.5.0.dylib                   [main]lib
+blib/lib/libparrot.2.6.0.dylib                   [main]lib
 blib/lib/libparrot.a                             [main]lib
 blib/lib/libparrot.dylib                         [main]lib
 blib/lib/libparrot.so                            [main]lib
-blib/lib/libparrot.so.2.5.0                      [main]lib
+blib/lib/libparrot.so.2.6.0                      [main]lib
 compilers/data_json/data_json.pbc                [data_json]
 config/gen/call_list/opengl.in                   []
 docs/ops/bit.pod                                 [doc]

Modified: trunk/README
==============================================================================
--- trunk/README	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/README	Wed Jul 21 00:49:08 2010	(r48146)
@@ -1,4 +1,4 @@
-This is Parrot, version 2.5.0
+This is Parrot, version 2.6.0
 ------------------------------
 
 Parrot is Copyright (C) 2001-2010, Parrot Foundation.

Modified: trunk/VERSION
==============================================================================
--- trunk/VERSION	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/VERSION	Wed Jul 21 00:49:08 2010	(r48146)
@@ -1 +1 @@
-2.5.0
+2.6.0

Modified: trunk/docs/parrothist.pod
==============================================================================
--- trunk/docs/parrothist.pod	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/docs/parrothist.pod	Wed Jul 21 00:49:08 2010	(r48146)
@@ -111,4 +111,6 @@
  Whiteknight 2.4.0          2010-May-18     "Sulfer Crest"
  Gerd        2.5.0          2010-Jun-15     "Cheops"
 
+ coke        2.6.0          2010-Jul-20     "Red-rumped"
+
 =cut

Modified: trunk/docs/project/release_manager_guide.pod
==============================================================================
--- trunk/docs/project/release_manager_guide.pod	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/docs/project/release_manager_guide.pod	Wed Jul 21 00:49:08 2010	(r48146)
@@ -413,7 +413,6 @@
 visible at
 L<http://www.google.com/calendar/render?cid=ldhctdamsgfg5a1cord52po9h8@group.calendar.google.com>.
 
- - Jul 20, 2010 - 2.6*  - coke
  - Aug 17, 2010 - 2.7   - mikehh
  - Sep 21, 2010 - 2.8   - gerd
  - Oct 19, 2010 - 2.9*  - ??

Modified: trunk/include/parrot/oplib/core_ops.h
==============================================================================
--- trunk/include/parrot/oplib/core_ops.h	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/include/parrot/oplib/core_ops.h	Wed Jul 21 00:49:08 2010	(r48146)
@@ -20,7 +20,7 @@
 #include "parrot/oplib.h"
 #include "parrot/runcore_api.h"
 
- op_lib_t *Parrot_DynOp_core_2_5_0(PARROT_INTERP, long init);
+ op_lib_t *Parrot_DynOp_core_2_6_0(PARROT_INTERP, long init);
 
  opcode_t * Parrot_end(opcode_t *, PARROT_INTERP);
  opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP);

Modified: trunk/src/ops/core_ops.c
==============================================================================
--- trunk/src/ops/core_ops.c	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/src/ops/core_ops.c	Wed Jul 21 00:49:08 2010	(r48146)
@@ -25137,7 +25137,7 @@
     }
 }
 op_lib_t *
-Parrot_DynOp_core_2_5_0(PARROT_INTERP, long init) {
+Parrot_DynOp_core_2_6_0(PARROT_INTERP, long init) {
     /* initialize and return op_lib ptr */
     if (init == 1) {
 
@@ -25166,7 +25166,7 @@
 
 {
     PMC *const lib = Parrot_pmc_new(interp, enum_class_ParrotLibrary);
-    ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_5_0;
+    ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_6_0;
     dynop_register(interp, lib);
     return lib;
 }

Modified: trunk/tools/util/release.json
==============================================================================
--- trunk/tools/util/release.json	Wed Jul 21 00:42:45 2010	(r48145)
+++ trunk/tools/util/release.json	Wed Jul 21 00:49:08 2010	(r48146)
@@ -1,9 +1,9 @@
 {
-    "release.version"  : "2.5.0",
-    "release.name"     : "Cheops",
+    "release.version"  : "2.6.0",
+    "release.name"     : "Red-rumped",
     "release.day"      : "Tuesday",
-    "release.date"     : "15 June 2010",
-    "release.nextdate" : "20 July 2010",
+    "release.date"     : "20 July 2010",
+    "release.nextdate" : "17 August 2010",
 
     "web.root"         : "http://parrot.org/",
     "web.source"       : "download",
@@ -11,12 +11,11 @@
     "web.repository"   : "https://svn.parrot.org/parrot/trunk/",
 
     "bugday.day"       : "Saturday",
-    "bugday.date"      : "17 July 2010",
+    "bugday.date"      : "14 August 2010",
 
     "wiki.root"        : "https://trac.parrot.org/parrot/wiki/",
-    "wiki.bugday"      : "bug_day_2010_07_17",
+    "wiki.bugday"      : "bug_day_2010_08_14",
 
-    "ftp.path"         : "ftp://ftp.parrot.org/pub/parrot/releases/devel/2.5.0/",
+    "ftp.path"         : "ftp://ftp.parrot.org/pub/parrot/releases/supported/2.6.0/",
     "subversion.root"  : "http://subversion.apache.org/",
-    "svk.root"         : "http://svk.bestpractical.com/"
 }


More information about the parrot-commits mailing list