Skip to content

Commit

Permalink
Update some stuff to 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Oct 18, 2011
1 parent 80f8508 commit d5f7440
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.generated
Original file line number Diff line number Diff line change
@@ -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.8.0.dylib [main]lib
blib/lib/libparrot.3.9.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.8.0 [main]lib
blib/lib/libparrot.so.3.9.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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is Parrot, version 3.8.0
This is Parrot, version 3.9.0
------------------------------

Parrot is Copyright (C) 2001-2011, Parrot Foundation.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.0
3.9.0
3 changes: 2 additions & 1 deletion docs/parrothist.pod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This document records Parrot source code releases, and their release managers.
Simon Cozens, Jeff Goff, Steve Fink, Leo Toetsch, Chip Salzenberg, Jerry Gay,
Patrick Michaud, Will "coke" Coleda, Matt Diephouse, chromatic, Allison Randal,
Jonathan Worthington, Bob Rogers, Bernhard Schmalhofer, Andrew Whitworth,
Francois Perrad, Jonathan Leto, Michael Hind, James E Keenan.
Francois Perrad, Jonathan "Duke" Leto, Michael Hind, James E Keenan.


=head1 THE RECORDS
Expand Down Expand Up @@ -132,5 +132,6 @@ Starred release numbers indicate supported releases.
jkeenan 3.6.0 * 2011-Jul-19 "P�jaros del Caribe"
coke 3.7.0 2011-Aug-16 "Wanda"
soh_cah_toa 3.8.0 2011-Sep-20 "Magrathea"
dukeleto 3.9.0 2011-Oct-18 "Archaeopteryx"

=cut
2 changes: 1 addition & 1 deletion include/parrot/oplib/core_ops.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "parrot/runcore_api.h"

PARROT_EXPORT
op_lib_t *Parrot_DynOp_core_3_8_0(PARROT_INTERP, long init);
op_lib_t *Parrot_DynOp_core_3_9_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
Original file line number Diff line number Diff line change
Expand Up @@ -23737,7 +23737,7 @@ op_lib_t core_op_lib = {
PARROT_FUNCTION_CORE, /* core_type = PARROT_XX_CORE */
0, /* flags */
3, /* major_version */
8, /* minor_version */
9, /* minor_version */
0, /* patch_version */
1093, /* op_count */
core_op_info_table, /* op_info_table */
Expand Down Expand Up @@ -23865,7 +23865,7 @@ static void hop_deinit(PARROT_INTERP)
hop_buckets = NULL;
}PARROT_EXPORT
op_lib_t *
Parrot_DynOp_core_3_8_0(PARROT_INTERP, long init) {
Parrot_DynOp_core_3_9_0(PARROT_INTERP, long init) {
/* initialize and return op_lib ptr */
if (init == 1) {

Expand Down Expand Up @@ -23894,7 +23894,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_8_0;
((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_3_9_0;
dynop_register(interp, lib);
return lib;
}
Expand Down
12 changes: 6 additions & 6 deletions tools/release/release.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"release.version" : "3.8.0",
"release.name" : "Magrathea",
"release.version" : "3.9.0",
"release.name" : "Archaeopteryx",
"release.day" : "Tuesday",
"release.date" : "20 September 2011",
"release.nextdate" : "18 October 2011",
"release.date" : "18 October 2011",
"release.nextdate" : "15 November 2011",

"web.root" : "http://parrot.org/",
"web.source" : "download",
Expand All @@ -14,8 +14,8 @@
"bugday.day" : "Saturday",
"bugday.date" : "15 October 2011",

"wiki.root" : "https://trac.parrot.org/parrot/wiki/",
"wiki.root" : "https://github.com/parrot/parrot/wiki",
"wiki.bugday" : "bug_day_2011_10_15",

"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/3.8.0/"
"ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/supported/3.9.0/"
}

0 comments on commit d5f7440

Please sign in to comment.