[svn:parrot] r49584 - in trunk: . docs include/parrot/oplib src/ops tools/release

cotto at svn.parrot.org cotto at svn.parrot.org
Tue Oct 19 22:15:04 UTC 2010


Author: cotto
Date: Tue Oct 19 22:15:03 2010
New Revision: 49584
URL: https://trac.parrot.org/parrot/changeset/49584

Log:
update Parrot to 2.9.1

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

Modified: trunk/MANIFEST.generated
==============================================================================
--- trunk/MANIFEST.generated	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/MANIFEST.generated	Tue Oct 19 22:15:03 2010	(r49584)
@@ -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.9.0.dylib                   [main]lib
+blib/lib/libparrot.2.9.1.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.9.0                      [main]lib
+blib/lib/libparrot.so.2.9.1                      [main]lib
 compilers/data_json/data_json.pbc                [data_json]
 config/gen/call_list/opengl.in                   []
 docs/ops/bit.pod                                 [doc]

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/NEWS	Tue Oct 19 22:15:03 2010	(r49584)
@@ -1,5 +1,8 @@
 # $Id$
 
+New in 2.9.1
+ - This is a bugfix release.  If you run out of memory on a box with < 512 MB physical RAM, please report it to us.
+
 New in 2.9.0
 - Core
   + Parrot and Rakudo's build and tests can now be run under the profiling runcore

Modified: trunk/README
==============================================================================
--- trunk/README	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/README	Tue Oct 19 22:15:03 2010	(r49584)
@@ -1,4 +1,4 @@
-This is Parrot, version 2.9.0
+This is Parrot, version 2.9.1
 ------------------------------
 
 Parrot is Copyright (C) 2001-2010, Parrot Foundation.

Modified: trunk/VERSION
==============================================================================
--- trunk/VERSION	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/VERSION	Tue Oct 19 22:15:03 2010	(r49584)
@@ -1 +1 @@
-2.9.0
+2.9.1

Modified: trunk/docs/parrothist.pod
==============================================================================
--- trunk/docs/parrothist.pod	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/docs/parrothist.pod	Tue Oct 19 22:15:03 2010	(r49584)
@@ -116,5 +116,6 @@
  Gerd        2.8.0          2010-Sep-21     "Tui Parakeet"
 
  Gerd        2.9.0 *        2010-Oct-19     "Red-masked"
+ cotto       2.9.1          2010-Oct-19     (bugfix release)
 
 =cut

Modified: trunk/include/parrot/oplib/core_ops.h
==============================================================================
--- trunk/include/parrot/oplib/core_ops.h	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/include/parrot/oplib/core_ops.h	Tue Oct 19 22:15:03 2010	(r49584)
@@ -21,7 +21,7 @@
 #include "parrot/runcore_api.h"
 
 PARROT_EXPORT
-op_lib_t *Parrot_DynOp_core_2_9_0(PARROT_INTERP, long init);
+op_lib_t *Parrot_DynOp_core_2_9_1(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	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/src/ops/core_ops.c	Tue Oct 19 22:15:03 2010	(r49584)
@@ -26094,7 +26094,7 @@
   0,                                /* flags */
   2,    /* major_version */
   9,    /* minor_version */
-  0,    /* patch_version */
+  1,    /* patch_version */
   1083,             /* op_count */
   core_op_info_table,       /* op_info_table */
   core_op_func_table,       /* op_func_table */
@@ -26220,7 +26220,7 @@
     hop_buckets = NULL;
 }PARROT_EXPORT
 op_lib_t *
-Parrot_DynOp_core_2_9_0(PARROT_INTERP, long init) {
+Parrot_DynOp_core_2_9_1(PARROT_INTERP, long init) {
     /* initialize and return op_lib ptr */
     if (init == 1) {
 
@@ -26249,7 +26249,7 @@
 
 {
     PMC *const lib = Parrot_pmc_new(interp, enum_class_ParrotLibrary);
-    ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_9_0;
+    ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_2_9_1;
     dynop_register(interp, lib);
     return lib;
 }

Modified: trunk/tools/release/release.json
==============================================================================
--- trunk/tools/release/release.json	Tue Oct 19 18:01:24 2010	(r49583)
+++ trunk/tools/release/release.json	Tue Oct 19 22:15:03 2010	(r49584)
@@ -1,6 +1,6 @@
 {
-    "release.version"  : "2.9.0",
-    "release.name"     : "Red-masked",
+    "release.version"  : "2.9.1",
+    "release.name"     : "(bugfix release)",
     "release.day"      : "Tuesday",
     "release.date"     : "19 October 2010",
     "release.nextdate" : "16 November 2010",
@@ -16,6 +16,6 @@
     "wiki.root"        : "https://trac.parrot.org/parrot/wiki/",
     "wiki.bugday"      : "bug_day_2010_11_13",
 
-    "ftp.path"         : "ftp://ftp.parrot.org/pub/parrot/releases/supported/2.9.0/",
+    "ftp.path"         : "ftp://ftp.parrot.org/pub/parrot/releases/supported/2.9.1/",
     "subversion.root"  : "http://subversion.apache.org/"
 }


More information about the parrot-commits mailing list