Skip to content

Commit

Permalink
Get all the metadata in place for Parrot 4.0, 'Hyperstasis'
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Jan 18, 2012
1 parent 03d92a8 commit 02324c9
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CREDITS
Expand Up @@ -113,7 +113,7 @@ E: yDNA@cpan.org
N: Andrew Whitworth
D: Internals development
D: Documentation
D: Release manager for 0.8.2, 1.3.0, 1.5.0, 2.4.0, 2.11.0, 3.3.0 and 3.10.0
D: Release manager for 0.8.2, 1.3.0, 1.5.0, 2.4.0, 2.11.0, 3.3.0, 3.10.0 and 4.0.0
E: wknight8111@gmail.com
U: Whiteknight

Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2012-01-17 release 4.0.0
- Core
+ Several cleanups to the interp subsystem API
+ Cleanups and documentation additions for green threads and timers
+ Iterator PMC and family now implement the "iterator" role

2011-12-20 release 3.11.0
- Core
+ packfile api and pbc handling improvements
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.11.0.dylib [main]lib
blib/lib/libparrot.4.0.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.11.0 [main]lib
blib/lib/libparrot.so.4.0.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.11.0
This is Parrot, version 4.0.0
------------------------------

Parrot is Copyright (C) 2001-2011, Parrot Foundation.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.11.0
4.0.0
3 changes: 3 additions & 0 deletions docs/parrothist.pod
Expand Up @@ -136,4 +136,7 @@ Starred release numbers indicate supported releases.
Whiteknight 3.10.0 2011-Nov-15 "Apple Pi"
cotto 3.11.0 2011-Dec-20 "Duct Tape"

Whiteknight 4.0.0 2011-Jan-17 "Hyperstasis"


=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:

- Jan 17, 2012 - 4.0.0 - whiteknight
- Feb 21, 2012 - 4.1.0 - alvis
- Mar 20, 2012 - 4.2.0 - dukeleto
- Apr 17, 2012 - 4.3.0 - cotto
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_11_0(PARROT_INTERP, long init);
op_lib_t *Parrot_DynOp_core_4_0_0(PARROT_INTERP, long init);

opcode_t * Parrot_end(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_noop(opcode_t *, PARROT_INTERP);
Expand Down
8 changes: 4 additions & 4 deletions src/ops/core_ops.c
Expand Up @@ -24094,8 +24094,8 @@ op_lib_t core_op_lib = {
"", /* suffix */
PARROT_FUNCTION_CORE, /* core_type = PARROT_XX_CORE */
0, /* flags */
3, /* major_version */
11, /* minor_version */
4, /* major_version */
0, /* 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_11_0(PARROT_INTERP, long init) {
Parrot_DynOp_core_4_0_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_11_0;
((Parrot_ParrotLibrary_attributes*)PMC_data(lib))->oplib_init = (void *) Parrot_DynOp_core_4_0_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.11.0",
"release.name" : "Duct tape",
"release.version" : "4.0.0",
"release.name" : "Hyperstasis",
"release.day" : "Tuesday",
"release.date" : "20 December 2011",
"release.nextdate" : "17 January 2012",
"release.date" : "17 January 2012",
"release.nextdate" : "21 February 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" : "15 January 2012",
"bugday.date" : "19 February 2012",

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

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

0 comments on commit 02324c9

Please sign in to comment.