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/03/04 15:15:42 UTC

[1/4] lucy-clownfish git commit: Update version script

Repository: lucy-clownfish
Updated Branches:
  refs/heads/master 36404c95a -> 05d3caa62


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/cd6d3140
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/cd6d3140
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/cd6d3140

Branch: refs/heads/master
Commit: cd6d31401dcf83b1ad8226c53c374a18cf31f56f
Parents: 36404c9
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Fri Mar 4 13:56:14 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Fri Mar 4 13:56:14 2016 +0100

----------------------------------------------------------------------
 devel/bin/update_version | 31 +++++++++++++++++++++++++++----
 1 file changed, 27 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/cd6d3140/devel/bin/update_version
----------------------------------------------------------------------
diff --git a/devel/bin/update_version b/devel/bin/update_version
index a99ecdd..0ee157e 100755
--- a/devel/bin/update_version
+++ b/devel/bin/update_version
@@ -64,6 +64,15 @@ for my $path ('runtime/common/charmonizer.c', 'runtime/common/charmonizer.main')
     write_file($path, $buf);
 }
 
+for my $path ('compiler/common/charmonizer.c', 'compiler/common/charmonizer.main') {
+    $buf = read_file($path);
+    $buf =~ s/(cfc_version\[\]\s+=\s+)"[\d.]+"/$1"$x_y_z_version"/
+        or die "no match";
+    $buf =~ s/(cfc_major_version\[\]\s+=\s+)"[\d.]+"/$1"$x.$y"/
+        or die "no match";
+    write_file($path, $buf);
+}
+
 # Update CFC.pm.
 $buf = read_file('compiler/perl/lib/Clownfish/CFC.pm');
 $buf =~ s/(our \$VERSION\ +=\ +)'.+?'/$1'$x_yyyzzz_version'/g
@@ -112,11 +121,19 @@ $buf =~ s/\bmajor_version=[\d.]+/major_version=$x.$y/
     or die "no match";
 write_file( 'runtime/c/install.sh', $buf );
 
-# Update compiler/python/setup.py
-$buf = read_file('compiler/python/setup.py');
-$buf =~ s/(\bversion\s+=\s+)'[\d.]+'/$1'$x_y_z_version'/
+# Update runtime/c/install.bat
+$buf = read_file('runtime/c/install.bat');
+$buf =~ s/\bmajor_version=[\d.]+/major_version=$x.$y/
     or die "no match";
-write_file( 'compiler/python/setup.py', $buf );
+write_file( 'runtime/c/install.bat', $buf );
+
+# Update compiler/python/setup.py
+for my $path (qw( compiler/python/setup.py runtime/python/setup.py )) {
+    $buf = read_file($path);
+    $buf =~ s/(\bversion\s+=\s+)'[\d.]+'/$1'$x_y_z_version'/
+        or die "no match";
+    write_file( $path, $buf );
+}
 
 # Update POD in compiler/perl/lib/Clownfish/CFC/Perl/Build.pm
 $buf = read_file('compiler/perl/lib/Clownfish/CFC/Perl/Build.pm');
@@ -138,6 +155,12 @@ $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 );
 
+# Update runtime/core/Clownfish/Docs/WritingClasses.md
+$buf = read_file('runtime/core/Clownfish/Docs/WritingClasses.md');
+$buf =~ s/("Clownfish":\s*)"v\d+\.\d+\.\d+"/$1"v$x_y_z_version"/g
+    or die "no match";
+write_file( 'runtime/core/Clownfish/Docs/WritingClasses.md', $buf );
+
 # Update all other Perl modules.
 find(\&update_pm_file, 'compiler/perl');
 find(\&update_pm_file, 'runtime/perl');


[3/4] lucy-clownfish git commit: Updating CHANGES for release 0.5.0

Posted by nw...@apache.org.
Updating CHANGES for release 0.5.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/94e81caa
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/94e81caa
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/94e81caa

Branch: refs/heads/master
Commit: 94e81caa7609299e9e2e5cbd8f24ecbf88abb3dc
Parents: 3a35bdc
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Fri Mar 4 14:25:30 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Fri Mar 4 14:25:30 2016 +0100

----------------------------------------------------------------------
 CHANGES | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 95 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/94e81caa/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 03b060a..d295a0b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,100 @@
 Revision history for Apache Clownfish
 
+0.5.0  2016-03-04
+
+  New features:
+
+    * [CLOWNFISH-2] - Create iterator for Hash
+    * [CLOWNFISH-19] - Go (golang) bindings for CFC
+    * [CLOWNFISH-23] - Markdown for documentation
+    * [CLOWNFISH-26] - Markdown for standalone documentation files
+    * [CLOWNFISH-28] - Proof-of-concept Go bindings
+    * [CLOWNFISH-46] - Travis CI with multiple host languages
+    * [CLOWNFISH-64] - Autogenerate subroutine code samples in Perl POD
+    * [CLOWNFISH-66] - Python-specific CFC
+    * [CLOWNFISH-71] - Autogenerate HTML documentation for C API
+    * [CLOWNFISH-72] - Document Clownfish internals like header file language
+    * [CLOWNFISH-75] - Add Clownfish page to lucy.apache.org
+
+  Bugfixes:
+
+    * [CLOWNFISH-3] - Charmonizer bombs out trying to set warnings as errors
+                      with Strawberry Perl
+    * [CLOWNFISH-9] - Make most Clownfish core types final
+    * [CLOWNFISH-24] - Error handling in C bindings is not thread-safe
+    * [CLOWNFISH-33] - Duplicate hash entries
+    * [CLOWNFISH-37] - Order of refcount manipulation when overwriting
+    * [CLOWNFISH-45] - Dynamically subclassing a final class should fail
+    * [CLOWNFISH-47] - Tighten up final method code gen and optimization
+    * [CLOWNFISH-62] - Crash when passing Perl variable as decremented arg
+    * [CLOWNFISH-63] - Don't export private methods via Go
+    * [CLOWNFISH-69] - Clownfish::CFC missing from CPAN prereqs
+
+  Improvements:
+
+    * [CLOWNFISH-7] - String-only keys for Hash
+    * [CLOWNFISH-11] - Rework ByteBuf
+    * [CLOWNFISH-15] - Method OFFSET vars should be uint32_t instead of
+                       size_t
+    * [CLOWNFISH-27] - Use functions rather than methods for refcounting
+    * [CLOWNFISH-29] - Use PERL_NO_GET_CONTEXT
+    * [CLOWNFISH-30] - Eliminate autogenerated "callbacks.h"
+    * [CLOWNFISH-34] - String-only keys for LFReg
+    * [CLOWNFISH-35] - Use size_t for Array and Hash indices
+    * [CLOWNFISH-39] - Public Vector API
+    * [CLOWNFISH-40] - LockFreeRegistry should be private
+    * [CLOWNFISH-42] - Move NumberUtils to Lucy
+    * [CLOWNFISH-49] - Remove Obj_Mimic, Obj_To_[FI]64, Obj_To_Bool
+    * [CLOWNFISH-50] - Convert some Obj methods to inert functions
+    * [CLOWNFISH-51] - Go glue should convert clownfish.String to Go string
+    * [CLOWNFISH-52] - Implement To_Host methods for core types
+    * [CLOWNFISH-53] - Support MSVC in C mode
+    * [CLOWNFISH-56] - Map Clownfish composite types to Go host types
+    * [CLOWNFISH-57] - Map clownfish.Obj to Go empty interface
+    * [CLOWNFISH-58] - Refine Hash API
+    * [CLOWNFISH-59] - Refine Go bindings
+    * [CLOWNFISH-61] - Run core tests under Go bindings
+    * [CLOWNFISH-65] - Refresh intro docs
+    * [CLOWNFISH-70] - Export major version from Perl bindings
+    * [CLOWNFISH-79] - Improve generated Perl bindings
+
+0.4.4 2016-01-26
+
+  Bugfixes:
+
+    * [CLOWNFISH-3] - Charmonizer bombs out trying to set warnings as
+                      errors with Strawberry Perl
+    * [CLOWNFISH-69] - Clownfish::CFC missing from CPAN prereqs
+
+0.4.3 2016-01-09
+
+  Bugfixes:
+
+    * [CLOWNFISH-33] - Duplicate hash entries
+
+  Improvements:
+
+    * Fix build and test suite under Strawberry Perl.
+    * Improve installation scripts for C library.
+
+0.4.2 2014-12-16
+
+  Bugfixes:
+
+    * [CLOWNFISH-18] - Determine Clownfish include dirs at build time
+
+0.4.1 2014-09-25
+
+  Bugfixes:
+
+    * [CLOWNFISH-4] - Account for compiler names with invalid leading
+                      whitespace
+    * [CLOWNFISH-5] - Add stub Clownfish/CFC/Model/Version.pm
+    * [CLOWNFISH-6] - Update issue tracker in dist metadata
+    * [CLOWNFISH-8] - CPAN smokers fail to build Lucy
+    * [CLOWNFISH-16] - Support arguments in $Config{cc}
+    * [CLOWNFISH-17] - Bump Devel::PPPort dependency to version 3.14
+
 0.4.0  2014-08-19
 
   Initial independent release after separation from Apache Lucy.


[2/4] lucy-clownfish git commit: Updating version number for release 0.5.0

Posted by nw...@apache.org.
Updating version number for release 0.5.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/3a35bdc4
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/3a35bdc4
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/3a35bdc4

Branch: refs/heads/master
Commit: 3a35bdc41b4fc111d9bec7cbe94611da4f0b0ad8
Parents: cd6d314
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Fri Mar 4 13:59:16 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Fri Mar 4 13:59:16 2016 +0100

----------------------------------------------------------------------
 compiler/common/charmonizer.c                     |  4 ++--
 compiler/common/charmonizer.main                  |  4 ++--
 compiler/perl/Build.PL                            |  2 +-
 compiler/perl/buildlib/Clownfish/CFC/Build.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 +-
 .../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 +-
 .../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 +-
 .../perl/lib/Clownfish/CFC/Binding/Perl/Pod.pm    |  2 +-
 .../lib/Clownfish/CFC/Binding/Perl/Subroutine.pm  |  2 +-
 .../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 +-
 .../perl/lib/Clownfish/CFC/Model/Hierarchy.pm     |  2 +-
 compiler/perl/lib/Clownfish/CFC/Model/Method.pm   |  2 +-
 .../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 +++---
 .../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                        |  2 +-
 runtime/core/Clownfish/Docs/WritingClasses.md     |  2 +-
 runtime/core/TestClownfish.cfp                    |  4 ++--
 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                     | 18 +++++++++---------
 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                |  2 +-
 runtime/perl/lib/Clownfish/Util/StringHelper.pm   |  2 +-
 runtime/perl/lib/Clownfish/Vector.pm              |  2 +-
 runtime/python/setup.py                           |  2 +-
 67 files changed, 87 insertions(+), 87 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/compiler/common/charmonizer.c
----------------------------------------------------------------------
diff --git a/compiler/common/charmonizer.c b/compiler/common/charmonizer.c
index 790de85..887e57c 100644
--- a/compiler/common/charmonizer.c
+++ b/compiler/common/charmonizer.c
@@ -7924,8 +7924,8 @@ typedef struct SourceFileContext {
     chaz_MakeVar *common_test_objs;
 } SourceFileContext;
 
-static const char cfc_version[]       = "0.4.0";
-static const char cfc_major_version[] = "0.4";
+static const char cfc_version[]       = "0.5.0";
+static const char cfc_major_version[] = "0.5";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/compiler/common/charmonizer.main
----------------------------------------------------------------------
diff --git a/compiler/common/charmonizer.main b/compiler/common/charmonizer.main
index c0c95b7..e8058c6 100644
--- a/compiler/common/charmonizer.main
+++ b/compiler/common/charmonizer.main
@@ -29,8 +29,8 @@ typedef struct SourceFileContext {
     chaz_MakeVar *common_test_objs;
 } SourceFileContext;
 
-static const char cfc_version[]       = "0.4.0";
-static const char cfc_major_version[] = "0.4";
+static const char cfc_version[]       = "0.5.0";
+static const char cfc_major_version[] = "0.5";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/compiler/perl/Build.PL
----------------------------------------------------------------------
diff --git a/compiler/perl/Build.PL b/compiler/perl/Build.PL
index e509e16..783971f 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.4.0',
+    dist_version       => '0.5.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/3a35bdc4/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 655d9f0..dd67a0b 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.004000';
+our $VERSION = '0.005000';
 $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/3a35bdc4/compiler/perl/lib/Clownfish/CFC.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/lib/Clownfish/CFC.pm b/compiler/perl/lib/Clownfish/CFC.pm
index 39ce119..e5df9e0 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
-our $MAJOR_VERSION = 0.004000;
+our $MAJOR_VERSION = 0.005000;
 
 END {
     Clownfish::CFC::Model::Class->_clear_registry();
@@ -27,7 +27,7 @@ END {
 }
 
 use XSLoader;
-BEGIN { XSLoader::load( 'Clownfish::CFC', '0.4.0' ) }
+BEGIN { XSLoader::load( 'Clownfish::CFC', '0.5.0' ) }
 
 {
     package Clownfish::CFC::Util;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 2b82f39..77601aa 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 ab3b742..f51886d 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 e2d65f9..563c20e 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 a569f56..f10d9e6 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 ebc2458..42fa42d 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 712dece..d431028 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 0a508b2..fbaaa6f 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 f11d0c5..0b0d187 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 c241163..443a078 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 d336f8a..034c0a5 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 d87e99b..6989d85 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 3b5a725..2ce74bb 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 ee133ef..af09266 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 15701ac..b3b60a3 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 861d5c4..b6e4994 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 1952758..6f58bfa 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 3550e71..be292a3 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 bdd71c1..e9266e8 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 3d7b622..671fe63 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 5657e63..979a7b7 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 271f9b4..c58e82d 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 840eaad..81d4efa 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 03c8aa6..a0e13a3 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 0d0cde0..152f6d7 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 36da564..5764fd1 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 3f63f20..af39d35 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 0a16499..ec5e713 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 1679dec..95b1eb0 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 2cf69bd..8a43ee4 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 3d85d15..851c407 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 7f8a297..1aa1f4e 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 use File::Spec::Functions qw( catdir catfile curdir updir abs2rel rel2abs );
@@ -602,10 +602,10 @@ the Perl bindings for Clownfish modules.
             'Other::Module' => '0.3.0',
         },
         configure_requires => {
-            'Clownfish::CFC::Perl::Build' => 0.004000,
+            'Clownfish::CFC::Perl::Build' => 0.005000,
         },
         build_requires => {
-            'Clownfish::CFC::Perl::Build' => 0.004000,
+            'Clownfish::CFC::Perl::Build' => 0.005000,
         },
     );
 

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 0159b0f..045d98a 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 use Carp;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 6b9a9b0..e695547 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 d4ce5fc..b321d97 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/compiler/python/setup.py
----------------------------------------------------------------------
diff --git a/compiler/python/setup.py b/compiler/python/setup.py
index 7d8017e..b9d3e28 100644
--- a/compiler/python/setup.py
+++ b/compiler/python/setup.py
@@ -172,7 +172,7 @@ cfc_extension = Extension('cfc._cfc',
                           sources = c_filepaths)
 
 setup(name = 'clownfish-cfc',
-      version = '0.4.0',
+      version = '0.5.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/3a35bdc4/runtime/c/install.bat
----------------------------------------------------------------------
diff --git a/runtime/c/install.bat b/runtime/c/install.bat
index 7afb45b..5530686 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.4
+set major_version=0.5
 
 if "%1" == "--prefix" goto opt_prefix
 echo Usage: install.bat --prefix path

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/c/install.sh
----------------------------------------------------------------------
diff --git a/runtime/c/install.sh b/runtime/c/install.sh
index 64a8496..7b49395 100755
--- a/runtime/c/install.sh
+++ b/runtime/c/install.sh
@@ -17,8 +17,8 @@
 
 set -e
 
-version=0.4.0
-major_version=0.4
+version=0.5.0
+major_version=0.5
 
 usage()
 {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/common/charmonizer.c
----------------------------------------------------------------------
diff --git a/runtime/common/charmonizer.c b/runtime/common/charmonizer.c
index e9e571a..45a11bf 100644
--- a/runtime/common/charmonizer.c
+++ b/runtime/common/charmonizer.c
@@ -7958,8 +7958,8 @@ typedef struct SourceFileContext {
     chaz_MakeVar *var;
 } SourceFileContext;
 
-static const char cfish_version[]       = "0.4.0";
-static const char cfish_major_version[] = "0.4";
+static const char cfish_version[]       = "0.5.0";
+static const char cfish_major_version[] = "0.5";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/common/charmonizer.main
----------------------------------------------------------------------
diff --git a/runtime/common/charmonizer.main b/runtime/common/charmonizer.main
index 7ddf0d7..93eb2b9 100644
--- a/runtime/common/charmonizer.main
+++ b/runtime/common/charmonizer.main
@@ -63,8 +63,8 @@ typedef struct SourceFileContext {
     chaz_MakeVar *var;
 } SourceFileContext;
 
-static const char cfish_version[]       = "0.4.0";
-static const char cfish_major_version[] = "0.4";
+static const char cfish_version[]       = "0.5.0";
+static const char cfish_major_version[] = "0.5";
 
 static void
 S_add_compiler_flags(struct chaz_CLI *cli);

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/core/Clownfish.cfp
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish.cfp b/runtime/core/Clownfish.cfp
index 4a6b5c3..23da323 100644
--- a/runtime/core/Clownfish.cfp
+++ b/runtime/core/Clownfish.cfp
@@ -1,5 +1,5 @@
 {
     "name": "Clownfish",
     "nickname": "Cfish",
-    "version": "v0.4.0"
+    "version": "v0.5.0"
 }

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/core/Clownfish/Docs/WritingClasses.md
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Docs/WritingClasses.md b/runtime/core/Clownfish/Docs/WritingClasses.md
index 350a42d..36f4774 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.4.0"
+            "Clownfish": "v0.5.0"
         }
     }
 

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/core/TestClownfish.cfp
----------------------------------------------------------------------
diff --git a/runtime/core/TestClownfish.cfp b/runtime/core/TestClownfish.cfp
index d7474d7..6db4b4a 100644
--- a/runtime/core/TestClownfish.cfp
+++ b/runtime/core/TestClownfish.cfp
@@ -1,8 +1,8 @@
 {
     "name": "TestClownfish",
     "nickname": "TestCfish",
-    "version": "v0.4.0",
+    "version": "v0.5.0",
     "prerequisites": {
-        "Clownfish": "v0.4.0"
+        "Clownfish": "v0.5.0"
     }
 }

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/Build.PL
----------------------------------------------------------------------
diff --git a/runtime/perl/Build.PL b/runtime/perl/Build.PL
index 8cec25d..5190a1e 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.4.0',
+    dist_version       => '0.5.0',
     dist_abstract      => 'Apache Clownfish Runtime',
     requires           => { 'perl' => '5.8.3', },
     configure_requires => {
         'Module::Build'               => 0.280801,
-        'Clownfish::CFC::Perl::Build' => 0.004000,
+        'Clownfish::CFC::Perl::Build' => 0.005000,
     },
     build_requires => {
         'Module::Build'      => 0.280801,
         'ExtUtils::CBuilder' => 0.21,
         'ExtUtils::ParseXS'  => 2.18,
         'Devel::PPPort'      => 3.14,
-        'Clownfish::CFC'     => 0.004000,
+        'Clownfish::CFC'     => 0.005000,
     },
     meta_merge => { keywords => [qw( clownfish )], },
     meta_add   => {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/buildlib/Clownfish/Build.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/buildlib/Clownfish/Build.pm b/runtime/perl/buildlib/Clownfish/Build.pm
index 53c855d..79c5239 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 use File::Spec::Functions qw( catdir catfile updir rel2abs );

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/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 1c5cb58..6d9e87e 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 sub bind_all {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish.pm b/runtime/perl/lib/Clownfish.pm
index bc45c17..c509513 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
-our $MAJOR_VERSION = 0.004000;
+our $MAJOR_VERSION = 0.005000;
 
 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.4.0';
+    bootstrap Clownfish '0.5.0';
 }
 
 sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Util::StringHelper;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $VERSION = eval $VERSION;
     BEGIN {
         push our @ISA, 'Exporter';
@@ -63,7 +63,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Obj;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $VERSION = eval $VERSION;
     use Carp qw( confess );
     # Clownfish objects are not thread-safe.
@@ -80,7 +80,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Class;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $VERSION = eval $VERSION;
 
     sub _find_parent_class {
@@ -123,7 +123,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Method;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $VERSION = eval $VERSION;
     no warnings 'redefine';
     sub CLONE_SKIP { 0; }
@@ -132,7 +132,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Err;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $VERSION = eval $VERSION;
     sub do_to_string { shift->to_string }
     use Scalar::Util qw( blessed );
@@ -171,7 +171,7 @@ sub error {$Clownfish::Err::error}
 
 {
     package Clownfish::Boolean;
-    our $VERSION = '0.004000';
+    our $VERSION = '0.005000';
     $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/3a35bdc4/runtime/perl/lib/Clownfish/Blob.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Blob.pm b/runtime/perl/lib/Clownfish/Blob.pm
index b944259..8184392 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Boolean.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Boolean.pm b/runtime/perl/lib/Clownfish/Boolean.pm
index 75452cb..2fe9610 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/ByteBuf.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/ByteBuf.pm b/runtime/perl/lib/Clownfish/ByteBuf.pm
index f539b0b..dfa9a5c 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/CharBuf.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/CharBuf.pm b/runtime/perl/lib/Clownfish/CharBuf.pm
index af0b01e..d55f790 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Class.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Class.pm b/runtime/perl/lib/Clownfish/Class.pm
index f830247..ff11a8e 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Err.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Err.pm b/runtime/perl/lib/Clownfish/Err.pm
index 8d52583..1ab3d27 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Float.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Float.pm b/runtime/perl/lib/Clownfish/Float.pm
index ad8b846..57fa5b8 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Hash.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Hash.pm b/runtime/perl/lib/Clownfish/Hash.pm
index ef06df9..8c9c838 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/HashIterator.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/HashIterator.pm b/runtime/perl/lib/Clownfish/HashIterator.pm
index f667c06..7aa507e 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Integer.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Integer.pm b/runtime/perl/lib/Clownfish/Integer.pm
index 98968b0..df7b2dc 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Obj.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Obj.pm b/runtime/perl/lib/Clownfish/Obj.pm
index 503874b..9cdee31 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/String.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/String.pm b/runtime/perl/lib/Clownfish/String.pm
index ce9c6e6..d959073 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Test.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Test.pm b/runtime/perl/lib/Clownfish/Test.pm
index ef4de51..185cefe 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Util/StringHelper.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Util/StringHelper.pm b/runtime/perl/lib/Clownfish/Util/StringHelper.pm
index cc1854c..b34a19f 100644
--- a/runtime/perl/lib/Clownfish/Util/StringHelper.pm
+++ b/runtime/perl/lib/Clownfish/Util/StringHelper.pm
@@ -15,7 +15,7 @@
 
 package Clownfish::Util::StringHelper;
 use Clownfish;
-our $VERSION = '0.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/perl/lib/Clownfish/Vector.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/lib/Clownfish/Vector.pm b/runtime/perl/lib/Clownfish/Vector.pm
index a120baf..097f3ad 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.004000';
+our $VERSION = '0.005000';
 $VERSION = eval $VERSION;
 
 1;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3a35bdc4/runtime/python/setup.py
----------------------------------------------------------------------
diff --git a/runtime/python/setup.py b/runtime/python/setup.py
index dbc41f5..2e89dd2 100644
--- a/runtime/python/setup.py
+++ b/runtime/python/setup.py
@@ -200,7 +200,7 @@ clownfish_extension = Extension('clownfish._clownfish',
                                  sources = c_filepaths)
 
 setup(name = 'clownfish',
-      version = '0.4.0',
+      version = '0.5.0',
       description = 'Clownfish runtime',
       author = 'Apache Lucy Project',
       author_email = 'dev at lucy dot apache dot org',


[4/4] lucy-clownfish git commit: Add missing license header

Posted by nw...@apache.org.
Add missing license header


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

Branch: refs/heads/master
Commit: 05d3caa62020e72aa8cd94a211f68207f35ff19f
Parents: 94e81ca
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Fri Mar 4 14:33:09 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Fri Mar 4 14:33:09 2016 +0100

----------------------------------------------------------------------
 compiler/python/test/test_cfc.py | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/05d3caa6/compiler/python/test/test_cfc.py
----------------------------------------------------------------------
diff --git a/compiler/python/test/test_cfc.py b/compiler/python/test/test_cfc.py
index 5ac2b8f..d3025dd 100644
--- a/compiler/python/test/test_cfc.py
+++ b/compiler/python/test/test_cfc.py
@@ -1,3 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 import unittest
 import cfc