Release 0.2.

* configure (VERSION): Bump to 0.2.
* mes.c (main): Likewise.
* module/mes/repl.mes: Likewise.
This commit is contained in:
Jan Nieuwenhuizen 2016-11-21 14:18:01 +01:00
parent 577aef2f74
commit 376bb5d62b
3 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@ -51,7 +51,7 @@ exec ${GUILE} --no-auto-compile -L $(pwd) -e '(@@ (configure) main)' -s "$0" ${1
(define *shell* "sh") (define *shell* "sh")
(define PACKAGE "mes") (define PACKAGE "mes")
(define VERSION "0.1") (define VERSION "0.2")
(define PREFIX "/usr/local") (define PREFIX "/usr/local")
(define GUILE_EV (effective-version)) (define GUILE_EV (effective-version))
(define CC (or (getenv "CC") "gcc")) (define CC (or (getenv "CC") "gcc"))

2
mes.c
View File

@ -1194,7 +1194,7 @@ int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
if (argc > 1 && !strcmp (argv[1], "--help")) return puts ("Usage: mes < FILE\n"); if (argc > 1 && !strcmp (argv[1], "--help")) return puts ("Usage: mes < FILE\n");
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.1\n"); if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.2\n");
g_stdin = stdin; g_stdin = stdin;
scm *a = mes_environment (); scm *a = mes_environment ();
display_ (stderr, load_env (a)); display_ (stderr, load_env (a));

View File

@ -25,7 +25,7 @@
;;; Code: ;;; Code:
(define welcome (define welcome
"Mes 0.1 "Mes 0.2
Copyright (C) 2016 Jan Nieuwenhuizen <janneke@gnu.org> Copyright (C) 2016 Jan Nieuwenhuizen <janneke@gnu.org>
Mes comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. Mes comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.