Skip to content

Commit

Permalink
cut the 3.11.0 release "Duct Tape"
Browse files Browse the repository at this point in the history
  • Loading branch information
cotto committed Dec 20, 2011
1 parent c27c041 commit a6c5dd2
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.generated
@@ -1,11 +1,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.3.10.0.dylib [main]lib
blib/lib/libparrot.3.11.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.3.10.0 [main]lib
blib/lib/libparrot.so.3.11.0 [main]lib
compilers/data_json/data_json.pbc [data_json]
config/gen/call_list/opengl.in []
docs/ops/bit.pod [doc]
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
This is Parrot, version 3.10.0
This is Parrot, version 3.11.0
------------------------------

Parrot is Copyright (C) 2001-2011, Parrot Foundation.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.10.0
3.11.0
1 change: 1 addition & 0 deletions docs/parrothist.pod
Expand Up @@ -134,5 +134,6 @@ Starred release numbers indicate supported releases.
soh_cah_toa 3.8.0 2011-Sep-20 "Magrathea"
dukeleto 3.9.0 * 2011-Oct-18 "Archaeopteryx"
Whiteknight 3.10.0 2011-Nov-15 "Apple Pi"
cotto 3.11.0 2011-Dec-20 "Duct Tape"

=cut
1 change: 0 additions & 1 deletion docs/project/release_manager_guide.pod
Expand Up @@ -513,7 +513,6 @@ L<http://www.google.com/calendar/render?cid=ldhctdamsgfg5a1cord52po9h8@group.cal

Versions with an asterisk (*) are supported releases:

- Dec 20, 2011 - 3.11.0 - cotto
- Jan 17, 2012 - 4.0.0 - ??
- Feb 21, 2012 - 4.1.0 - ??
- Mar 20, 2012 - 4.2.0 - dukeleto
Expand Down
2 changes: 1 addition & 1 deletion include/parrot/oplib/core_ops.h
Expand Up @@ -19,7 +19,7 @@
#include "parrot/runcore_api.h"

PARROT_EXPORT
op_lib_t *Parrot_DynOp_core_3_10_0(PARROT_INTERP, long init);
op_lib_t *Parrot_DynOp_core_3_11_0(PARROT_INTERP, long init);

opcode_t * Parrot_end(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP);
Expand Down
6 changes: 3 additions & 3 deletions src/ops/core_ops.c
Expand Up @@ -24095,7 +24095,7 @@ op_lib_t core_op_lib = {
PARROT_FUNCTION_CORE, /* core_type = PARROT_XX_CORE */
0, /* flags */
3, /* major_version */
10, /* minor_version */
11, /* minor_version */
0, /* patch_version */
1104, /* op_count */
core_op_info_table, /* op_info_table */
Expand Down Expand Up @@ -24223,7 +24223,7 @@ static void hop_deinit(PARROT_INTERP)
hop_buckets = NULL;
}PARROT_EXPORT
op_lib_t *
Parrot_DynOp_core_3_10_0(PARROT_INTERP, long init) {
Parrot_DynOp_core_3_11_0(PARROT_INTERP, long init) {
/* initialize and return op_lib ptr */
if (init == 1) {

Expand Down Expand Up @@ -24252,7 +24252,7 @@ Parrot_lib_core_ops_load(PARROT_INTERP)

{
PMC *const lib = Parrot_pmc_new(interp, enum_class_ParrotLibrary);
((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_3_10_0;
((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_3_11_0;
dynop_register(interp, lib);
return lib;
}
Expand Down
12 changes: 6 additions & 6 deletions tools/release/release.json
@@ -1,9 +1,9 @@
{
"release.version" : "3.10.0",
"release.name" : "Apple Pi",
"release.version" : "3.11.0",
"release.name" : "Duct tape",
"release.day" : "Tuesday",
"release.date" : "15 November 2011",
"release.nextdate" : "20 December 2011",
"release.date" : "20 December 2011",
"release.nextdate" : "17 January 2012",

"web.root" : "http://parrot.org/",
"web.source" : "download",
Expand All @@ -12,10 +12,10 @@
"web.org_root" : "https://github.com/parrot",

"bugday.day" : "Saturday",
"bugday.date" : "17 December 2011",
"bugday.date" : "15 January 2012",

"wiki.root" : "https://github.com/parrot/parrot/wiki",
"wiki.bugday" : "bug_day_2011_12_17",

"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/3.10.0/"
"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/3.11.0/"
}

0 comments on commit a6c5dd2

Please sign in to comment.