From: Marius Gavrilescu Date: Sat, 24 Mar 2018 16:30:00 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.005^0 X-Git-Url: http://git.ieval.ro/?p=app-scheme79asm.git;a=commitdiff_plain;h=fe1c44b35d67e5054f8a6a8d5a76d8e3be91616d Bump version and update Changes --- diff --git a/Changes b/Changes index 8196adc..a6659c3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension App::Scheme79asm. +0.005 2018-03-24T18:30+02:00 + - Compiler output can now be given to assembler + - Fix missing dependency + - Write more tests to get to 100% code coverage + - Add test for perlcritic compliance, and make code comply + 0.004 2018-03-17T22:54+02:00 - Add a compiler from Lisp to assembly - Write unit tests for compiler diff --git a/README b/README index f32fd8e..e690317 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -App-Scheme79asm version 0.004 +App-Scheme79asm version 0.005 ============================= SIMPLE is a LISP processor defined in the 1979 diff --git a/lib/App/Scheme79asm.pm b/lib/App/Scheme79asm.pm index fb99ee3..1590d85 100644 --- a/lib/App/Scheme79asm.pm +++ b/lib/App/Scheme79asm.pm @@ -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.004'; +our $VERSION = '0.005'; our %TYPES = ( LIST => 0, diff --git a/lib/App/Scheme79asm/Compiler.pm b/lib/App/Scheme79asm/Compiler.pm index bf03eea..7bb9121 100644 --- a/lib/App/Scheme79asm/Compiler.pm +++ b/lib/App/Scheme79asm/Compiler.pm @@ -6,7 +6,7 @@ use warnings; use parent qw/Exporter/; our @EXPORT_OK = qw/pretty_print/; -our $VERSION = 0.004; +our $VERSION = '0.005'; use Carp qw/croak/; use Data::Dumper qw/Dumper/;