From: Marius Gavrilescu Date: Fri, 11 May 2018 19:20:01 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 1.000^0 X-Git-Url: http://git.ieval.ro/?p=app-scheme79asm.git;a=commitdiff_plain;h=296bac97c7ac6410c858581515ea3aebbe24fc6c Bump version and update Changes --- diff --git a/Changes b/Changes index eac4903..d9b0b21 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension App::Scheme79asm. +1.000 2018-05-11T22:20+01:00 + - First stable release + - Obtain 100% code coverage again + 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 diff --git a/README b/README index 06bf6b3..833a0a6 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -App-Scheme79asm version 0.005001 -================================ +App-Scheme79asm version 1.000 +============================= 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 374a8a3..353580f 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.005001'; +our $VERSION = '1.000'; our %TYPES = ( LIST => 0, diff --git a/lib/App/Scheme79asm/Compiler.pm b/lib/App/Scheme79asm/Compiler.pm index 270580e..a30d9dd 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.005001'; +our $VERSION = '1.000'; use Carp qw/croak/; use Data::Dumper qw/Dumper/;