Skip to content

Commit

Permalink
prep for release 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Aug 17, 2011
1 parent e4ff789 commit 9114095
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,5 +1,9 @@
#1

2011.08.15 coke
* Released 3.7.0
See NEWS for more information.

2011.07.19 jkeenan
* Released 3.6.0
See NEWS for more information.
Expand Down
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.6.0.dylib [main]lib
blib/lib/libparrot.3.7.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.6.0 [main]lib
blib/lib/libparrot.so.3.7.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.6.0
This is Parrot, version 3.7.0
------------------------------

Parrot is Copyright (C) 2001-2011, Parrot Foundation.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.6.0
3.7.0
1 change: 1 addition & 0 deletions docs/parrothist.pod
Expand Up @@ -130,5 +130,6 @@ Starred release numbers indicate supported releases.
cotto 3.5.0 2011-Jun-21 "Menelaus"

jkeenan 3.6.0 * 2011-Jul-19 "P�jaros del Caribe"
coke 3.7.0 2011-Aug-16 "Wanda"

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

Versions with a asterisk (*) are supported releases.

- Aug 16, 2011 - 3.7 - coke
- Sep 20, 2011 - 3.8 - soh_cah_toa
- Oct 18, 2011 - 3.9* - dukeleto
- Nov 15, 2011 - 3.10 - ??
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_6_0(PARROT_INTERP, long init);
op_lib_t *Parrot_DynOp_core_3_7_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 @@ -23685,7 +23685,7 @@ op_lib_t core_op_lib = {
PARROT_FUNCTION_CORE, /* core_type = PARROT_XX_CORE */
0, /* flags */
3, /* major_version */
6, /* minor_version */
7, /* minor_version */
0, /* patch_version */
1091, /* op_count */
core_op_info_table, /* op_info_table */
Expand Down Expand Up @@ -23813,7 +23813,7 @@ static void hop_deinit(PARROT_INTERP)
hop_buckets = NULL;
}PARROT_EXPORT
op_lib_t *
Parrot_DynOp_core_3_6_0(PARROT_INTERP, long init) {
Parrot_DynOp_core_3_7_0(PARROT_INTERP, long init) {
/* initialize and return op_lib ptr */
if (init == 1) {

Expand Down Expand Up @@ -23842,7 +23842,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_6_0;
((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_3_7_0;
dynop_register(interp, lib);
return lib;
}
Expand Down
14 changes: 7 additions & 7 deletions tools/release/release.json
@@ -1,9 +1,9 @@
{
"release.version" : "3.6.0",
"release.name" : "Pájaros del Caribe",
"release.version" : "3.7.0",
"release.name" : "Wanda",
"release.day" : "Tuesday",
"release.date" : "19 July 2011",
"release.nextdate" : "16 August 2011",
"release.date" : "16 August 2011",
"release.nextdate" : "20 September 2011",

"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" : "13 August 2011",
"bugday.date" : "17 September 2011",

"wiki.root" : "https://trac.parrot.org/parrot/wiki/",
"wiki.bugday" : "bug_day_2011_08_13",
"wiki.bugday" : "bug_day_2011_09_17",

"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/3.6.0/"
"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/3.7.0/"
}

0 comments on commit 9114095

Please sign in to comment.