diff --git a/CREDITS b/CREDITS index e1ee6d3505..b0ee2ac61c 100644 --- a/CREDITS +++ b/CREDITS @@ -76,7 +76,7 @@ U: allison N: Alvis Yardley D: Documentation Shepherd (3.9.0 - Present) -D: Release manger for 4.1.0 +D: Release manger for 4.1.0 and 4.5.0 E: ac.yardley@gmail.com U: alvis S: Ft. Worth, Texas diff --git a/ChangeLog b/ChangeLog index d6fcbe493b..06300b0b32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-07-XX release 4.6.0 + - Core + - Documentation + - Tests + - Community + 2012-06-19 release 4.5.0 - Core + Added .write_bytes and .read_bytes methods to FileHandle and Socket @@ -16,7 +22,7 @@ + Fixed up Pod in 240 files to pass 't/codingstd/pod_description.t'. - Tests + Added 'docs/pdds' and 'docs/pdds/draft' as files for - 'Parrot::Test::Pod.pm' to exclude. + 'Parrot::Test::Pod.pm' to exclude. - Build + Reduced number of packages under 'lib/Parrot/Pmc2c/'. + Added method-level documentation to several of the remaining packages. diff --git a/MANIFEST.generated b/MANIFEST.generated index df2fa20cc6..ddc29c1b9a 100644 --- a/MANIFEST.generated +++ b/MANIFEST.generated @@ -1,14 +1,14 @@ # 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.4.4.0.dylib [main]lib +blib/lib/libparrot.4.5.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.4.4.0 [main]lib +blib/lib/libparrot.so.4.5.0 [main]lib compilers/data_json/data_json.pbc [data_json] config/gen/call_list/opengl.in [] -cygparrot-4.4.0.dll [main]bin +cygparrot-4.5.0.dll [main]bin docs/ops/bit.pod [doc] docs/ops/cmp.pod [doc] docs/ops/core.pod [doc] diff --git a/README.pod b/README.pod index 40154b2f74..ebffbf3270 100644 --- a/README.pod +++ b/README.pod @@ -4,7 +4,7 @@ =head1 NAME -README.pod - Readme to Parrot, version 4.4.0. +README.pod - Readme to Parrot, version 4.5.0. =head1 DESCRIPTION diff --git a/VERSION b/VERSION index fdc6698807..a84947d6ff 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.4.0 +4.5.0 diff --git a/docs/parrothist.pod b/docs/parrothist.pod index 3973ad5b92..d2ea62d0a3 100644 --- a/docs/parrothist.pod +++ b/docs/parrothist.pod @@ -143,5 +143,6 @@ Starred release numbers indicate supported releases. cotto 4.3.0 * 2012-Apr-17 "In Which..." Whiteknight 4.4.0 2012-May-15 "Banana Fanna Fo Ferret" + alvis 4.5.0 2012-Jun-19 "Buff-faced Pygmy Parrot" =cut diff --git a/docs/project/release_manager_guide.pod b/docs/project/release_manager_guide.pod index b7bf2f7d2d..304e91081c 100644 --- a/docs/project/release_manager_guide.pod +++ b/docs/project/release_manager_guide.pod @@ -544,7 +544,6 @@ The calendar of releases is available at the C Google calendar, visible at L. - - Jun 19, 2012 - 4.5.0 - alvis - Jul 17, 2012 - 4.6.0 - reini - Aug 21, 2012 - 4.7.0 - whiteknight - Sep 18, 2012 - 4.8.0 - ?? diff --git a/include/parrot/oplib/core_ops.h b/include/parrot/oplib/core_ops.h index 721219e7b1..cd292ef046 100644 --- a/include/parrot/oplib/core_ops.h +++ b/include/parrot/oplib/core_ops.h @@ -19,7 +19,7 @@ #include "parrot/runcore_api.h" PARROT_EXPORT -op_lib_t *Parrot_DynOp_core_4_4_0(PARROT_INTERP, long init); +op_lib_t *Parrot_DynOp_core_4_5_0(PARROT_INTERP, long init); opcode_t * Parrot_end(opcode_t *, PARROT_INTERP); opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP); diff --git a/src/ops/core_ops.c b/src/ops/core_ops.c index 568bf48465..b39add2cab 100644 --- a/src/ops/core_ops.c +++ b/src/ops/core_ops.c @@ -24440,7 +24440,7 @@ op_lib_t core_op_lib = { PARROT_FUNCTION_CORE, /* core_type = PARROT_XX_CORE */ 0, /* flags */ 4, /* major_version */ - 4, /* minor_version */ + 5, /* minor_version */ 0, /* patch_version */ 1125, /* op_count */ core_op_info_table, /* op_info_table */ @@ -24569,7 +24569,7 @@ static void hop_deinit(PARROT_INTERP) hop_buckets = NULL; }PARROT_EXPORT op_lib_t * -Parrot_DynOp_core_4_4_0(PARROT_INTERP, long init) { +Parrot_DynOp_core_4_5_0(PARROT_INTERP, long init) { /* initialize and return op_lib ptr */ if (init == 1) { @@ -24598,7 +24598,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_4_4_0; + ((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_4_5_0; dynop_register(interp, lib); return lib; } diff --git a/tools/release/release.json b/tools/release/release.json index 1194831206..9bca653354 100644 --- a/tools/release/release.json +++ b/tools/release/release.json @@ -1,8 +1,8 @@ { - "release.version" : "4.4.0", - "release.name" : "Banana Fanna Fo Ferret", + "release.version" : "4.5.0", + "release.name" : "Buff-faced Pygmy Parrot", "release.day" : "Tuesday", - "release.nextdate" : "19 June 2012", + "release.nextdate" : "17 July 2012", "web.root" : "http://parrot.org/", "web.source" : "download", @@ -11,10 +11,10 @@ "web.org_root" : "https://github.com/parrot", "bugday.day" : "Saturday", - "bugday.date" : "16 June 2012", + "bugday.date" : "14 July 2012", "wiki.root" : "https://github.com/parrot/parrot/wiki", - "wiki.bugday" : "bug_day_2012_06_16", + "wiki.bugday" : "bug_day_2012_07_14", - "ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/stable/4.4.0/" + "ftp.path" : "ftp://ftp.parrot.org/pub/parrot/releases/devel/4.5.0/" }