Bump version and update Changes 0.005001
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 28 Apr 2018 16:41:08 +0000 (19:41 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 28 Apr 2018 16:41:08 +0000 (19:41 +0300)
Changes
README
lib/App/Scheme79asm.pm
lib/App/Scheme79asm/Compiler.pm

diff --git a/Changes b/Changes
index a6659c3b986c12d052b411ed3ea3bbdc22d3aed8..eac490333ae98ad06848d0a3049ca51cf3313d54 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension App::Scheme79asm.
 
+0.005001 2018-04-28T17:41+01:00
+ - Use Data::Dump::Sexp instead of a custom dump_sexp function
+ - Make the compiler output contain proper symbols instead of strings
+ - Improve the compiler documentation slightly
+
 0.005 2018-03-24T18:30+02:00
  - Compiler output can now be given to assembler
  - Fix missing dependency
diff --git a/README b/README
index f7edf9d550ae95709299ad3107f2f34cb42ca4c3..06bf6b30e2dad0d74b2c92bb7969dcbcdc684490 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-App-Scheme79asm version 0.005
-=============================
+App-Scheme79asm version 0.005001
+================================
 
 SIMPLE is a LISP processor defined in the 1979
 B<Design of LISP-Based Processors> paper by Steele and Sussman.
index 602afd1484316615b334b804e6af01975f5982b6..6a2b4857864f979147b8748d1d6c93e1b53f1b32 100644 (file)
@@ -10,7 +10,7 @@ use Data::Dumper qw/Dumper/;
 use Data::SExpression qw/consp scalarp/;
 use Scalar::Util qw/looks_like_number/;
 
-our $VERSION = '0.005';
+our $VERSION = '0.005001';
 
 our %TYPES = (
        LIST => 0,
index de1ca0569baa8ff5f93b7852df631d711c6c773d..270580e154b8a1fc487967c260fe2ba5b8e237bd 100644 (file)
@@ -4,7 +4,7 @@ use 5.014000;
 use strict;
 use warnings;
 
-our $VERSION = '0.005';
+our $VERSION = '0.005001';
 
 use Carp qw/croak/;
 use Data::Dumper qw/Dumper/;
This page took 0.013124 seconds and 4 git commands to generate.