Skip to content

Commit

Permalink
update version number everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Dec 21, 2010
1 parent 74ee649 commit e21a925
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
4 changes: 2 additions & 2 deletions CREDITS
Expand Up @@ -92,7 +92,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 and 2.4.0
D: Release manager for 0.8.2, 1.3.0, 1.5.0, 2.4.0 and 2.11.0
E: wknight8111@gmail.com
U: Whiteknight

Expand Down Expand Up @@ -530,7 +530,7 @@ E: zhuomingliang@yahoo.com.cn
D: Bugfixes, cage cleaning

N: John Harrison
E: ash@greatethaninfinity.com
E: ash@greatethaninfinity.com
U: ash_

N: John J. Trammell
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.2.10.1.dylib [main]lib
blib/lib/libparrot.2.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.2.10.1 [main]lib
blib/lib/libparrot.so.2.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
4 changes: 2 additions & 2 deletions README
@@ -1,5 +1,5 @@
This is Parrot, version 2.10.1
-----------------------------
This is Parrot, version 2.11.0
------------------------------

Parrot is Copyright (C) 2001-2010, Parrot Foundation.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.10.1
2.11.0
2 changes: 1 addition & 1 deletion include/parrot/oplib/core_ops.h
Expand Up @@ -51,7 +51,7 @@ op_lib_t *Parrot_DynOp_core_2_10_1(PARROT_INTERP, long init);
opcode_t * Parrot_yield(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_tailcall_p(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_returncc(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_sub_capture_lex_p(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_capture_lex_p(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_newclosure_p_p(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_set_args_pc(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_get_params_pc(opcode_t *, PARROT_INTERP);
Expand Down
21 changes: 13 additions & 8 deletions src/ops/core_ops.c
Expand Up @@ -105,7 +105,7 @@ static op_func_t core_op_func_table[1074] = {
Parrot_yield, /* 27 */
Parrot_tailcall_p, /* 28 */
Parrot_returncc, /* 29 */
Parrot_sub_capture_lex_p, /* 30 */
Parrot_capture_lex_p, /* 30 */
Parrot_newclosure_p_p, /* 31 */
Parrot_set_args_pc, /* 32 */
Parrot_get_params_pc, /* 33 */
Expand Down Expand Up @@ -1553,7 +1553,7 @@ static op_info_t core_op_info_table[1074] = {
/* type PARROT_INLINE_OP, */
"capture_lex",
"capture_lex_p",
"Parrot_sub_capture_lex_p",
"Parrot_capture_lex_p",
/* "", body */
0,
2,
Expand Down Expand Up @@ -15388,7 +15388,7 @@ Parrot_returncc(opcode_t *cur_opcode, PARROT_INTERP) {
}

opcode_t *
Parrot_sub_capture_lex_p(opcode_t *cur_opcode, PARROT_INTERP) {
Parrot_capture_lex_p(opcode_t *cur_opcode, PARROT_INTERP) {
const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
Parrot_sub_capture_lex(interp, PREG(1));

Expand Down Expand Up @@ -16048,7 +16048,6 @@ opcode_t *
Parrot_loadlib_p_s_p(opcode_t *cur_opcode, PARROT_INTERP) {
const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
PREG(1) = Parrot_dyn_load_lib(interp, SREG(2), PREG(3));
Parrot_warn_experimental(interp, "Parrot_loadlib_p_s_p is experimental");

return (opcode_t *)cur_opcode + 4;}

Expand Down Expand Up @@ -25427,7 +25426,8 @@ Parrot_new_p_s_i(opcode_t *cur_opcode, PARROT_INTERP) {
: PMCNULL;

if (!PMC_IS_NULL(_class)) {
PMC *initial = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
PMC *initial = Parrot_pmc_new(interp,
Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
VTABLE_set_integer_native(interp, initial, IREG(3));
PREG(1) = VTABLE_instantiate(interp, _class, initial);
}
Expand All @@ -25452,7 +25452,8 @@ Parrot_new_p_sc_i(opcode_t *cur_opcode, PARROT_INTERP) {
: PMCNULL;

if (!PMC_IS_NULL(_class)) {
PMC *initial = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
PMC *initial = Parrot_pmc_new(interp,
Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
VTABLE_set_integer_native(interp, initial, IREG(3));
PREG(1) = VTABLE_instantiate(interp, _class, initial);
}
Expand All @@ -25477,7 +25478,8 @@ Parrot_new_p_s_ic(opcode_t *cur_opcode, PARROT_INTERP) {
: PMCNULL;

if (!PMC_IS_NULL(_class)) {
PMC *initial = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
PMC *initial = Parrot_pmc_new(interp,
Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
VTABLE_set_integer_native(interp, initial, ICONST(3));
PREG(1) = VTABLE_instantiate(interp, _class, initial);
}
Expand All @@ -25502,7 +25504,8 @@ Parrot_new_p_sc_ic(opcode_t *cur_opcode, PARROT_INTERP) {
: PMCNULL;

if (!PMC_IS_NULL(_class)) {
PMC *initial = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
PMC *initial = Parrot_pmc_new(interp,
Parrot_hll_get_ctx_HLL_type(interp, enum_class_Integer));
VTABLE_set_integer_native(interp, initial, ICONST(3));
PREG(1) = VTABLE_instantiate(interp, _class, initial);
}
Expand Down Expand Up @@ -25788,6 +25791,7 @@ Parrot_finalize_p(opcode_t *cur_opcode, PARROT_INTERP) {
/* Go to the next op after loop unrolling */
opcode_t * const dest = cur_opcode + 2;
PMC *eh = PMCNULL;
Parrot_warn_experimental(interp, "finalize is experimental");
if (!PMC_IS_NULL(PREG(1))) {
/* If isa ExceptionHandler, use it. If isa Exception, get its active handler */
if (VTABLE_isa(interp, PREG(1), Parrot_str_new_constant(interp, "ExceptionHandler")))
Expand Down Expand Up @@ -25827,6 +25831,7 @@ Parrot_finalize_pc(opcode_t *cur_opcode, PARROT_INTERP) {
/* Go to the next op after loop unrolling */
opcode_t * const dest = cur_opcode + 2;
PMC *eh = PMCNULL;
Parrot_warn_experimental(interp, "finalize is experimental");
if (!PMC_IS_NULL(PCONST(1))) {
/* If isa ExceptionHandler, use it. If isa Exception, get its active handler */
if (VTABLE_isa(interp, PCONST(1), Parrot_str_new_constant(interp, "ExceptionHandler")))
Expand Down

0 comments on commit e21a925

Please sign in to comment.