From 6c9fb71ea4cea174575c2f09f8d12ae0c95c8457 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 28 Apr 2018 19:41:08 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 5 +++++ README | 4 ++-- lib/App/Scheme79asm.pm | 2 +- lib/App/Scheme79asm/Compiler.pm | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index a6659c3..eac4903 100644 --- 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 f7edf9d..06bf6b3 100644 --- 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 paper by Steele and Sussman. diff --git a/lib/App/Scheme79asm.pm b/lib/App/Scheme79asm.pm index 602afd1..6a2b485 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.005'; +our $VERSION = '0.005001'; our %TYPES = ( LIST => 0, diff --git a/lib/App/Scheme79asm/Compiler.pm b/lib/App/Scheme79asm/Compiler.pm index de1ca05..270580e 100644 --- a/lib/App/Scheme79asm/Compiler.pm +++ b/lib/App/Scheme79asm/Compiler.pm @@ -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/; -- 2.30.2