You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/09/24 13:17:23 UTC

[1/3] lucy-clownfish git commit: Update update_version script

Repository: lucy-clownfish
Updated Branches:
  refs/heads/0.6 [created] cb4228524


Update update_version script


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/767ab5e6
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/767ab5e6
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/767ab5e6

Branch: refs/heads/0.6
Commit: 767ab5e697d2780208f9afeedf0554962d7e3a38
Parents: 366ecac
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Sep 24 14:52:04 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Sep 24 14:52:04 2016 +0200

----------------------------------------------------------------------
 devel/bin/update_version | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/767ab5e6/devel/bin/update_version
----------------------------------------------------------------------
diff --git a/devel/bin/update_version b/devel/bin/update_version
index 0ee157e..aa44a9b 100755
--- a/devel/bin/update_version
+++ b/devel/bin/update_version
@@ -97,6 +97,14 @@ if ( $z == 0 && $dev == 0 ) {
 }
 write_file( 'runtime/perl/lib/Clownfish.pm', $buf );
 
+# Update Clownfish/Test.pm.
+$buf = read_file('runtime/perl/lib/Clownfish/Test.pm');
+$buf =~ s/(our \$VERSION\ +=\ +)'.+?'/$1'$x_yyyzzz_version'/g
+    or die "no match";
+$buf =~ s/(bootstrap Clownfish::Test ')(.+?)'/$1$x_y_z_d_version'/
+    or die "no match";
+write_file( 'runtime/perl/lib/Clownfish/Test.pm', $buf );
+
 # Update compiler Build.PL
 $buf = read_file('compiler/perl/Build.PL');
 $buf =~ s/(dist_version\ +=>\ +)'.+?'/$1'$x_y_z_d_version'/
@@ -145,15 +153,19 @@ write_file( 'compiler/perl/lib/Clownfish/CFC/Perl/Build.pm', $buf );
 $buf = read_file('runtime/core/Clownfish.cfp');
 $buf =~ s/("version":\s+)"v\d+\.\d+\.\d+"/$1"v$x_y_z_version"/
     or die "no match";
+if ( $z == 0 && $dev == 0 ) {
+    $buf =~ s/("major_version":\s+)"v\d+\.\d+\.\d+"/$1"v$x_y_z_version"/
+        or die "no match";
+}
 write_file( 'runtime/core/Clownfish.cfp', $buf );
 
-# Update runtime/core/TestClownfish.cfp
-$buf = read_file('runtime/core/TestClownfish.cfp');
+# Update runtime/test/TestClownfish.cfp
+$buf = read_file('runtime/test/TestClownfish.cfp');
 $buf =~ s/("version":\s+)"v\d+\.\d+\.\d+"/$1"v$x_y_z_version"/
     or die "no match";
 $buf =~ s/("Clownfish":\s+)"v\d+\.\d+\.\d+"/$1"v$x_y_z_version"/
     or die "no match";
-write_file( 'runtime/core/TestClownfish.cfp', $buf );
+write_file( 'runtime/test/TestClownfish.cfp', $buf );
 
 # Update runtime/core/Clownfish/Docs/WritingClasses.md
 $buf = read_file('runtime/core/Clownfish/Docs/WritingClasses.md');


[2/3] lucy-clownfish git commit: Update version number for release 0.6.0

Posted by nw...@apache.org.
Update version number for release 0.6.0


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/7d2eb1b4
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/7d2eb1b4
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/7d2eb1b4

Branch: refs/heads/0.6
Commit: 7d2eb1b472711234fe709ebafd9e011ece0b77e1
Parents: 767ab5e
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Sep 24 14:55:49 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Sep 24 14:56:26 2016 +0200

----------------------------------------------------------------------
 compiler/common/charmonizer.c                       |  4 ++--
 compiler/common/charmonizer.main                    |  4 ++--
 compiler/go/INSTALL.md                              |  2 +-
 compiler/perl/Build.PL                              |  2 +-
 compiler/perl/buildlib/Clownfish/CFC/Build.pm       |  2 +-
 .../perl/buildlib/Clownfish/CFC/Test/TestUtils.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC.pm                  |  6 +++---
 compiler/perl/lib/Clownfish/CFC/Base.pm             |  2 +-
 compiler/perl/lib/Clownfish/CFC/Binding/Core.pm     |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm  |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Core/Class.pm    |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Core/File.pm     |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Core/Function.pm |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Core/Method.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm     |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Perl/Class.pm    |  2 +-
 .../lib/Clownfish/CFC/Binding/Perl/Constructor.pm   |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Perl/Method.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm |  2 +-
 .../lib/Clownfish/CFC/Binding/Perl/Subroutine.pm    |  2 +-
 .../perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm  |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Class.pm      |  2 +-
 .../perl/lib/Clownfish/CFC/Model/DocuComment.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/File.pm       |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Function.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm  |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Method.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm  |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Type.pm       |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Variable.pm   |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Version.pm    |  2 +-
 compiler/perl/lib/Clownfish/CFC/Parser.pm           |  2 +-
 compiler/perl/lib/Clownfish/CFC/Perl/Build.pm       |  6 +++---
 .../perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm  |  2 +-
 compiler/perl/lib/Clownfish/CFC/Test.pm             |  2 +-
 compiler/perl/lib/Clownfish/CFC/Util.pm             |  2 +-
 compiler/python/setup.py                            |  2 +-
 runtime/c/install.bat                               |  2 +-
 runtime/c/install.sh                                |  4 ++--
 runtime/common/charmonizer.c                        |  4 ++--
 runtime/common/charmonizer.main                     |  4 ++--
 runtime/core/Clownfish.cfp                          |  4 ++--
 runtime/core/Clownfish/Docs/WritingClasses.md       |  2 +-
 runtime/perl/Build.PL                               |  6 +++---
 runtime/perl/buildlib/Clownfish/Build.pm            |  2 +-
 runtime/perl/buildlib/Clownfish/Build/Binding.pm    |  2 +-
 runtime/perl/lib/Clownfish.pm                       | 16 ++++++++--------
 runtime/perl/lib/Clownfish/Blob.pm                  |  2 +-
 runtime/perl/lib/Clownfish/Boolean.pm               |  2 +-
 runtime/perl/lib/Clownfish/ByteBuf.pm               |  2 +-
 runtime/perl/lib/Clownfish/CharBuf.pm               |  2 +-
 runtime/perl/lib/Clownfish/Class.pm                 |  2 +-
 runtime/perl/lib/Clownfish/Err.pm                   |  2 +-
 runtime/perl/lib/Clownfish/Float.pm                 |  2 +-
 runtime/perl/lib/Clownfish/Hash.pm                  |  2 +-
 runtime/perl/lib/Clownfish/HashIterator.pm          |  2 +-
 runtime/perl/lib/Clownfish/Integer.pm               |  2 +-
 runtime/perl/lib/Clownfish/Obj.pm                   |  2 +-
 runtime/perl/lib/Clownfish/String.pm                |  2 +-
 runtime/perl/lib/Clownfish/Test.pm                  |  4 ++--
 runtime/perl/lib/Clownfish/Vector.pm                |  2 +-
 runtime/python/setup.py                             |  2 +-
 runtime/test/TestClownfish.cfp                      |  4 ++--
 68 files changed, 89 insertions(+), 89 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/common/charmonizer.c
----------------------------------------------------------------------
diff --git a/compiler/common/charmonizer.c b/compiler/common/charmonizer.c
index 70a6d9c..fd4a306 100644
--- a/compiler/common/charmonizer.c
+++ b/compiler/common/charmonizer.c
@@ -8609,8 +8609,8 @@ typedef struct SourceFileContext {
     chaz_MakeBinary *test_binary;
 } SourceFileContext;
 
-static const char cfc_version[]       = "0.5.0";
-static const char cfc_major_version[] = "0.5";
+static const char cfc_version[]       = "0.6.0";
+static const char cfc_major_version[] = "0.6";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/common/charmonizer.main
----------------------------------------------------------------------
diff --git a/compiler/common/charmonizer.main b/compiler/common/charmonizer.main
index 7d24ea6..348b7cf 100644
--- a/compiler/common/charmonizer.main
+++ b/compiler/common/charmonizer.main
@@ -28,8 +28,8 @@ typedef struct SourceFileContext {
     chaz_MakeBinary *test_binary;
 } SourceFileContext;
 
-static const char cfc_version[]       = "0.5.0";
-static const char cfc_major_version[] = "0.5";
+static const char cfc_version[]       = "0.6.0";
+static const char cfc_major_version[] = "0.6";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/go/INSTALL.md
----------------------------------------------------------------------
diff --git a/compiler/go/INSTALL.md b/compiler/go/INSTALL.md
index 0276482..746ae07 100644
--- a/compiler/go/INSTALL.md
+++ b/compiler/go/INSTALL.md
@@ -5,7 +5,7 @@ To install from an official release of Clownfish:
 
     mkdir -p $GOPATH/src/git-wip-us.apache.org/repos/asf/lucy.git
     tar -C $GOPATH/src/git-wip-us.apache.org/repos/asf/lucy.git \
-        -zxf apache-clownfish-0.5.0.tgz
+        -zxf apache-clownfish-0.6.0.tgz
 
 Developers actively working on Clownfish may instead clone from the Clownfish
 Git repository:

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/Build.PL
----------------------------------------------------------------------
diff --git a/compiler/perl/Build.PL b/compiler/perl/Build.PL
index 395478e..6cbac42 100644
--- a/compiler/perl/Build.PL
+++ b/compiler/perl/Build.PL
@@ -24,7 +24,7 @@ my $builder = Clownfish::CFC::Build->new(
     license     => 'apache',
     dist_author =>
         'The Apache Lucy Project <dev at lucy dot apache dot org>',
-    dist_version       => '0.5.0',
+    dist_version       => '0.6.0',
     dist_abstract      => 'CFC Apache Clownfish compiler',
     requires           => { 'perl' => '5.8.3', },
     configure_requires => { 'Module::Build' => 0.280801 },

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/buildlib/Clownfish/CFC/Build.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/buildlib/Clownfish/CFC/Build.pm b/compiler/perl/buildlib/Clownfish/CFC/Build.pm
index ef016b0..87f906f 100644
--- a/compiler/perl/buildlib/Clownfish/CFC/Build.pm
+++ b/compiler/perl/buildlib/Clownfish/CFC/Build.pm
@@ -18,7 +18,7 @@ use warnings;
 
 package Clownfish::CFC::Build;
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 # In order to find Clownfish::CFC::Perl::Build::Charmonic, look in 'lib'

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/buildlib/Clownfish/CFC/Test/TestUtils.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/buildlib/Clownfish/CFC/Test/TestUtils.pm b/compiler/perl/buildlib/Clownfish/CFC/Test/TestUtils.pm
index 2df524d..3e4ed33 100644
--- a/compiler/perl/buildlib/Clownfish/CFC/Test/TestUtils.pm
+++ b/compiler/perl/buildlib/Clownfish/CFC/Test/TestUtils.pm
@@ -18,7 +18,7 @@ use warnings;
 
 package Clownfish::CFC::Test::TestUtils;
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 use Exporter 'import';

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC.pm b/compiler/perl/lib/Clownfish/CFC.pm
index d869e00..26cb4a4 100644
--- a/compiler/perl/lib/Clownfish/CFC.pm
+++ b/compiler/perl/lib/Clownfish/CFC.pm
@@ -17,9 +17,9 @@ use strict;
 use warnings;
 
 package Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
-our $MAJOR_VERSION = 0.005000;
+our $MAJOR_VERSION = 0.006000;
 
 END {
     Clownfish::CFC::Model::Class->_clear_registry();
@@ -27,7 +27,7 @@ END {
 }
 
 use XSLoader;
-BEGIN { XSLoader::load( 'Clownfish::CFC', '0.5.0' ) }
+BEGIN { XSLoader::load( 'Clownfish::CFC', '0.6.0' ) }
 
 {
     package Clownfish::CFC::Util;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Base.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Base.pm b/compiler/perl/lib/Clownfish/CFC/Base.pm
index 77601aa..e332118 100644
--- a/compiler/perl/lib/Clownfish/CFC/Base.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Base.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Base;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core.pm
index f51886d..67dd4e6 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
index 563c20e..0e99a75 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core::Aliases;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Class.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
index f10d9e6..b6481d1 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core::Class;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core/File.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core/File.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core/File.pm
index 42fa42d..a64f978 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core/File.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core/File.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core::File;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Function.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
index d431028..f3ac5b3 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core::Function;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Method.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
index fbaaa6f..501aba4 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Core::Method;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm
index 0b0d187..b1a3e32 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Class.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Class.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Class.pm
index 443a078..a809886 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Class.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Class.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::Class;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Constructor.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Constructor.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Constructor.pm
index 034c0a5..c478d19 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Constructor.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Constructor.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::Constructor;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Method.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Method.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Method.pm
index 6989d85..dec0d72 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Method.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Method.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::Method;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm
index 2ce74bb..c724d38 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::Pod;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Subroutine.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Subroutine.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Subroutine.pm
index af09266..b3cac44 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Subroutine.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/Subroutine.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::Subroutine;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm
index b3b60a3..9c6f5a6 100644
--- a/compiler/perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Binding/Perl/TypeMap.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Binding::Perl::TypeMap;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm b/compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm
index b6e4994..b51e4f5 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/CBlock.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::CBlock;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Class.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Class.pm b/compiler/perl/lib/Clownfish/CFC/Model/Class.pm
index 6f58bfa..a644a2f 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Class.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Class.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Class;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/DocuComment.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/DocuComment.pm b/compiler/perl/lib/Clownfish/CFC/Model/DocuComment.pm
index be292a3..8715a98 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/DocuComment.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/DocuComment.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::DocuComment;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/File.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/File.pm b/compiler/perl/lib/Clownfish/CFC/Model/File.pm
index e9266e8..0e7bd83 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/File.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/File.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::File;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm b/compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm
index 671fe63..f79175d 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/FileSpec.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::FileSpec;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Function.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Function.pm b/compiler/perl/lib/Clownfish/CFC/Model/Function.pm
index 979a7b7..506a2ff 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Function.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Function.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Function;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm b/compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm
index c58e82d..20f5fc0 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Hierarchy.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Hierarchy;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Method.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Method.pm b/compiler/perl/lib/Clownfish/CFC/Model/Method.pm
index 81d4efa..fd6cd7f 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Method.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Method.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Method;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm b/compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm
index a0e13a3..dab4dbe 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/ParamList.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::ParamList;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm b/compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm
index 152f6d7..5d9784f 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Parcel.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Parcel;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm b/compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm
index 5764fd1..edafbcd 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Prereq.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Prereq;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm b/compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm
index af39d35..fed82c2 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Symbol.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Symbol;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Type.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Type.pm b/compiler/perl/lib/Clownfish/CFC/Model/Type.pm
index ec5e713..26edb3c 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Type.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Type.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Type;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Variable.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Variable.pm b/compiler/perl/lib/Clownfish/CFC/Model/Variable.pm
index 95b1eb0..2b7f43e 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Variable.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Variable.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Variable;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Model/Version.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Version.pm b/compiler/perl/lib/Clownfish/CFC/Model/Version.pm
index 8a43ee4..c9dd16c 100644
--- a/compiler/perl/lib/Clownfish/CFC/Model/Version.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Model/Version.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Model::Version;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Parser.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Parser.pm b/compiler/perl/lib/Clownfish/CFC/Parser.pm
index 851c407..1d29e68 100644
--- a/compiler/perl/lib/Clownfish/CFC/Parser.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Parser.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Parser;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Perl/Build.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Perl/Build.pm b/compiler/perl/lib/Clownfish/CFC/Perl/Build.pm
index 58b9296..dac4b2d 100644
--- a/compiler/perl/lib/Clownfish/CFC/Perl/Build.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Perl/Build.pm
@@ -18,7 +18,7 @@ use warnings;
 
 package Clownfish::CFC::Perl::Build;
 use base qw( Module::Build );
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 use File::Spec::Functions qw( catdir catfile curdir updir abs2rel rel2abs );
@@ -679,10 +679,10 @@ the Perl bindings for Clownfish modules.
             'Other::Module' => '0.3.0',
         },
         configure_requires => {
-            'Clownfish::CFC::Perl::Build' => 0.005000,
+            'Clownfish::CFC::Perl::Build' => 0.006000,
         },
         build_requires => {
-            'Clownfish::CFC::Perl::Build' => 0.005000,
+            'Clownfish::CFC::Perl::Build' => 0.006000,
         },
     );
 

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm b/compiler/perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm
index 9d8e232..5a3410e 100644
--- a/compiler/perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Perl/Build/Charmonic.pm
@@ -20,7 +20,7 @@ package Clownfish::CFC::Perl::Build::Charmonic;
 
 use base qw( Module::Build );
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 use Carp;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Test.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Test.pm b/compiler/perl/lib/Clownfish/CFC/Test.pm
index e695547..e66597a 100644
--- a/compiler/perl/lib/Clownfish/CFC/Test.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Test.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Test;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/perl/lib/Clownfish/CFC/Util.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC/Util.pm b/compiler/perl/lib/Clownfish/CFC/Util.pm
index b321d97..973cde7 100644
--- a/compiler/perl/lib/Clownfish/CFC/Util.pm
+++ b/compiler/perl/lib/Clownfish/CFC/Util.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CFC::Util;
 use Clownfish::CFC;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/compiler/python/setup.py
----------------------------------------------------------------------
diff --git a/compiler/python/setup.py b/compiler/python/setup.py
index 28b0401..19ac85e 100644
--- a/compiler/python/setup.py
+++ b/compiler/python/setup.py
@@ -179,7 +179,7 @@ cfc_extension = Extension('cfc._cfc',
                           sources = c_filepaths)
 
 setup(name = 'clownfish-cfc',
-      version = '0.5.0',
+      version = '0.6.0',
       description = 'Clownfish compiler',
       author = 'Apache Lucy Project',
       author_email = 'dev at lucy dot apache dot org',

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/c/install.bat
----------------------------------------------------------------------
diff --git a/runtime/c/install.bat b/runtime/c/install.bat
index 25f3208..be905e7 100644
--- a/runtime/c/install.bat
+++ b/runtime/c/install.bat
@@ -15,7 +15,7 @@ rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 rem See the License for the specific language governing permissions and
 rem limitations under the License.
 
-set major_version=0.5
+set major_version=0.6
 
 if "%1" == "--prefix" goto opt_prefix
 echo Usage: install.bat --prefix path

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/c/install.sh
----------------------------------------------------------------------
diff --git a/runtime/c/install.sh b/runtime/c/install.sh
index 67f2adf..f4c3611 100755
--- a/runtime/c/install.sh
+++ b/runtime/c/install.sh
@@ -17,8 +17,8 @@
 
 set -e
 
-version=0.5.0
-major_version=0.5
+version=0.6.0
+major_version=0.6
 
 usage()
 {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/common/charmonizer.c
----------------------------------------------------------------------
diff --git a/runtime/common/charmonizer.c b/runtime/common/charmonizer.c
index a5fca62..fbaf5f7 100644
--- a/runtime/common/charmonizer.c
+++ b/runtime/common/charmonizer.c
@@ -8637,8 +8637,8 @@ typedef struct cfish_MakeFile {
     char        *autogen_target;
 } cfish_MakeFile;
 
-static const char cfish_version[]       = "0.5.0";
-static const char cfish_major_version[] = "0.5";
+static const char cfish_version[]       = "0.6.0";
+static const char cfish_major_version[] = "0.6";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/common/charmonizer.main
----------------------------------------------------------------------
diff --git a/runtime/common/charmonizer.main b/runtime/common/charmonizer.main
index 806bdfa..12be6db 100644
--- a/runtime/common/charmonizer.main
+++ b/runtime/common/charmonizer.main
@@ -56,8 +56,8 @@ typedef struct cfish_MakeFile {
     char        *autogen_target;
 } cfish_MakeFile;
 
-static const char cfish_version[]       = "0.5.0";
-static const char cfish_major_version[] = "0.5";
+static const char cfish_version[]       = "0.6.0";
+static const char cfish_major_version[] = "0.6";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/core/Clownfish.cfp
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish.cfp b/runtime/core/Clownfish.cfp
index edb708f..6fe4bd6 100644
--- a/runtime/core/Clownfish.cfp
+++ b/runtime/core/Clownfish.cfp
@@ -1,6 +1,6 @@
 {
     "name": "Clownfish",
     "nickname": "Cfish",
-    "version": "v0.5.0",
-    "major_version": "v0.5.0"
+    "version": "v0.6.0",
+    "major_version": "v0.6.0"
 }

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/core/Clownfish/Docs/WritingClasses.md
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Docs/WritingClasses.md b/runtime/core/Clownfish/Docs/WritingClasses.md
index 36f4774..5ee630d 100644
--- a/runtime/core/Clownfish/Docs/WritingClasses.md
+++ b/runtime/core/Clownfish/Docs/WritingClasses.md
@@ -28,7 +28,7 @@ An example `.cfp` file might look like:
         "nickname": "Pfind",
         "version": "v2.3.8",
         "prerequisites": {
-            "Clownfish": "v0.5.0"
+            "Clownfish": "v0.6.0"
         }
     }
 

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/Build.PL
----------------------------------------------------------------------
diff --git a/runtime/perl/Build.PL b/runtime/perl/Build.PL
index 2178e79..2fa15ac 100644
--- a/runtime/perl/Build.PL
+++ b/runtime/perl/Build.PL
@@ -24,19 +24,19 @@ my $builder = Clownfish::Build->new(
     license     => 'apache',
     dist_author =>
         'The Apache Lucy Project <dev at lucy dot apache dot org>',
-    dist_version       => '0.5.0',
+    dist_version       => '0.6.0',
     dist_abstract      => 'Apache Clownfish Runtime',
     requires           => { 'perl' => '5.8.3', },
     configure_requires => {
         'Module::Build'               => 0.280801,
-        'Clownfish::CFC::Perl::Build' => 0.005000,
+        'Clownfish::CFC::Perl::Build' => 0.006000,
     },
     build_requires => {
         'Module::Build'      => 0.280801,
         'ExtUtils::CBuilder' => 0.21,
         'ExtUtils::ParseXS'  => 3.00,
         'Devel::PPPort'      => 3.14,
-        'Clownfish::CFC'     => 0.005000,
+        'Clownfish::CFC'     => 0.006000,
     },
     meta_merge => { keywords => [qw( clownfish )], },
     meta_add   => {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/buildlib/Clownfish/Build.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/buildlib/Clownfish/Build.pm b/runtime/perl/buildlib/Clownfish/Build.pm
index c038ebc..78a5459 100644
--- a/runtime/perl/buildlib/Clownfish/Build.pm
+++ b/runtime/perl/buildlib/Clownfish/Build.pm
@@ -36,7 +36,7 @@ use base qw(
     Clownfish::CFC::Perl::Build::Charmonic
 );
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 use File::Spec::Functions qw( catdir catfile updir rel2abs );

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/buildlib/Clownfish/Build/Binding.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/buildlib/Clownfish/Build/Binding.pm b/runtime/perl/buildlib/Clownfish/Build/Binding.pm
index 9435923..61c0abe 100644
--- a/runtime/perl/buildlib/Clownfish/Build/Binding.pm
+++ b/runtime/perl/buildlib/Clownfish/Build/Binding.pm
@@ -16,7 +16,7 @@ package Clownfish::Build::Binding;
 use strict;
 use warnings;
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 sub bind_all {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish.pm b/runtime/perl/lib/Clownfish.pm
index 7cc5f05..daca392 100644
--- a/runtime/perl/lib/Clownfish.pm
+++ b/runtime/perl/lib/Clownfish.pm
@@ -20,9 +20,9 @@ package Clownfish;
 
 use 5.008003;
 
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
-our $MAJOR_VERSION = 0.005000;
+our $MAJOR_VERSION = 0.006000;
 
 use Exporter 'import';
 BEGIN {
@@ -38,14 +38,14 @@ BEGIN {
     require DynaLoader;
     our @ISA = qw( DynaLoader );
     # This loads a large number of disparate subs.
-    bootstrap Clownfish '0.5.0';
+    bootstrap Clownfish '0.6.0';
 }
 
 sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Obj;
-    our $VERSION = '0.005000';
+    our $VERSION = '0.006000';
     $VERSION = eval $VERSION;
     use Carp qw( confess );
     # Clownfish objects are not thread-safe.
@@ -62,7 +62,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Class;
-    our $VERSION = '0.005000';
+    our $VERSION = '0.006000';
     $VERSION = eval $VERSION;
 
     sub _find_parent_class {
@@ -105,7 +105,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Method;
-    our $VERSION = '0.005000';
+    our $VERSION = '0.006000';
     $VERSION = eval $VERSION;
     no warnings 'redefine';
     sub CLONE_SKIP { 0; }
@@ -114,7 +114,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Err;
-    our $VERSION = '0.005000';
+    our $VERSION = '0.006000';
     $VERSION = eval $VERSION;
     sub do_to_string { shift->to_string }
     use Scalar::Util qw( blessed );
@@ -153,7 +153,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Boolean;
-    our $VERSION = '0.005000';
+    our $VERSION = '0.006000';
     $VERSION = eval $VERSION;
     use Exporter 'import';
     our @EXPORT_OK = qw( $true_singleton $false_singleton );

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Blob.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Blob.pm b/runtime/perl/lib/Clownfish/Blob.pm
index 8184392..4183d7a 100644
--- a/runtime/perl/lib/Clownfish/Blob.pm
+++ b/runtime/perl/lib/Clownfish/Blob.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Blob;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Boolean.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Boolean.pm b/runtime/perl/lib/Clownfish/Boolean.pm
index 2fe9610..37773ef 100644
--- a/runtime/perl/lib/Clownfish/Boolean.pm
+++ b/runtime/perl/lib/Clownfish/Boolean.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Boolean;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/ByteBuf.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/ByteBuf.pm b/runtime/perl/lib/Clownfish/ByteBuf.pm
index dfa9a5c..0efb0bb 100644
--- a/runtime/perl/lib/Clownfish/ByteBuf.pm
+++ b/runtime/perl/lib/Clownfish/ByteBuf.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::ByteBuf;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/CharBuf.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/CharBuf.pm b/runtime/perl/lib/Clownfish/CharBuf.pm
index d55f790..8217d8c 100644
--- a/runtime/perl/lib/Clownfish/CharBuf.pm
+++ b/runtime/perl/lib/Clownfish/CharBuf.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::CharBuf;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Class.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Class.pm b/runtime/perl/lib/Clownfish/Class.pm
index ff11a8e..8fa63c9 100644
--- a/runtime/perl/lib/Clownfish/Class.pm
+++ b/runtime/perl/lib/Clownfish/Class.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Class;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Err.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Err.pm b/runtime/perl/lib/Clownfish/Err.pm
index 1ab3d27..e837786 100644
--- a/runtime/perl/lib/Clownfish/Err.pm
+++ b/runtime/perl/lib/Clownfish/Err.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Err;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Float.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Float.pm b/runtime/perl/lib/Clownfish/Float.pm
index 57fa5b8..142f3c7 100644
--- a/runtime/perl/lib/Clownfish/Float.pm
+++ b/runtime/perl/lib/Clownfish/Float.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Float;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Hash.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Hash.pm b/runtime/perl/lib/Clownfish/Hash.pm
index 8c9c838..6470609 100644
--- a/runtime/perl/lib/Clownfish/Hash.pm
+++ b/runtime/perl/lib/Clownfish/Hash.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Hash;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/HashIterator.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/HashIterator.pm b/runtime/perl/lib/Clownfish/HashIterator.pm
index 7aa507e..2ec9d2d 100644
--- a/runtime/perl/lib/Clownfish/HashIterator.pm
+++ b/runtime/perl/lib/Clownfish/HashIterator.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::HashIterator;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Integer.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Integer.pm b/runtime/perl/lib/Clownfish/Integer.pm
index df7b2dc..27db3af 100644
--- a/runtime/perl/lib/Clownfish/Integer.pm
+++ b/runtime/perl/lib/Clownfish/Integer.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Integer;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Obj.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Obj.pm b/runtime/perl/lib/Clownfish/Obj.pm
index 9cdee31..6be5805 100644
--- a/runtime/perl/lib/Clownfish/Obj.pm
+++ b/runtime/perl/lib/Clownfish/Obj.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Obj;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/String.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/String.pm b/runtime/perl/lib/Clownfish/String.pm
index d959073..b8af882 100644
--- a/runtime/perl/lib/Clownfish/String.pm
+++ b/runtime/perl/lib/Clownfish/String.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::String;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Test.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Test.pm b/runtime/perl/lib/Clownfish/Test.pm
index 9ace155..78a6159 100644
--- a/runtime/perl/lib/Clownfish/Test.pm
+++ b/runtime/perl/lib/Clownfish/Test.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Test;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 sub dl_load_flags { 1 }
@@ -23,7 +23,7 @@ sub dl_load_flags { 1 }
 BEGIN {
     require DynaLoader;
     our @ISA = qw( DynaLoader );
-    bootstrap Clownfish::Test '0.5.0';
+    bootstrap Clownfish::Test '0.6.0';
 }
 
 sub run_tests {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/perl/lib/Clownfish/Vector.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Vector.pm b/runtime/perl/lib/Clownfish/Vector.pm
index 097f3ad..22a35d8 100644
--- a/runtime/perl/lib/Clownfish/Vector.pm
+++ b/runtime/perl/lib/Clownfish/Vector.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Vector;
 use Clownfish;
-our $VERSION = '0.005000';
+our $VERSION = '0.006000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/python/setup.py
----------------------------------------------------------------------
diff --git a/runtime/python/setup.py b/runtime/python/setup.py
index 17eb7f0..e7c0f4c 100644
--- a/runtime/python/setup.py
+++ b/runtime/python/setup.py
@@ -219,7 +219,7 @@ clownfish_extension = Extension('clownfish._clownfish',
                                  sources = c_filepaths)
 
 setup(name = 'clownfish',
-      version = '0.5.0',
+      version = '0.6.0',
       description = 'Clownfish runtime',
       author = 'Apache Lucy Project',
       author_email = 'dev at lucy dot apache dot org',

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/7d2eb1b4/runtime/test/TestClownfish.cfp
----------------------------------------------------------------------
diff --git a/runtime/test/TestClownfish.cfp b/runtime/test/TestClownfish.cfp
index abae9c0..9626fd3 100644
--- a/runtime/test/TestClownfish.cfp
+++ b/runtime/test/TestClownfish.cfp
@@ -2,8 +2,8 @@
     "name": "TestClownfish",
     "nickname": "TestCfish",
     "installed": false,
-    "version": "v0.5.0",
+    "version": "v0.6.0",
     "prerequisites": {
-        "Clownfish": "v0.5.0"
+        "Clownfish": "v0.6.0"
     }
 }


[3/3] lucy-clownfish git commit: Update release date for 0.6.0 release

Posted by nw...@apache.org.
Update release date for 0.6.0 release


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/cb422852
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/cb422852
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/cb422852

Branch: refs/heads/0.6
Commit: cb4228524b7bef5af229c4f302eb68ce1573fa76
Parents: 7d2eb1b
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Sep 24 15:07:09 2016 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Sep 24 15:07:09 2016 +0200

----------------------------------------------------------------------
 CHANGES | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/cb422852/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 17ff94f..30c823c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,6 @@
 Revision history for Apache Clownfish
 
-0.6.0  XXXX-XX-XX
+0.6.0  2016-09-24
 
   Bugfixes: