Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.21.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 71bd0b6..493ec6d 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension nana

+0.21
+
+    - added stat() function
+
 0.20

     - portable Time class
  • Loading branch information
tokuhirom committed May 7, 2012
1 parent 3550abf commit 9992e11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension nana

0.21

- added stat() function

0.20

- portable Time class
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -128,6 +128,7 @@ t/tra/builtins/callee.tra
t/tra/builtins/getpid.tra
t/tra/builtins/getppid.tra
t/tra/builtins/math.tra
t/tra/builtins/stat.tra
t/tra/caller.tra
t/tra/class-method.tra
t/tra/class.tra
Expand Down
2 changes: 1 addition & 1 deletion lib/Nana/Parser.pm
Expand Up @@ -13,7 +13,7 @@ use XSLoader;
use Nana::Token;
use Nana::Node;

our $VERSION='0.20';
our $VERSION='0.21';

XSLoader::load('Nana::Parser', $VERSION);

Expand Down
2 changes: 2 additions & 0 deletions t/tra/builtins/stat.tra
Expand Up @@ -9,3 +9,5 @@ note($stat.atime());
note($stat.ctime());
note($stat.mtime());
note($stat.ino());

done_testing();

0 comments on commit 9992e11

Please sign in to comment.