Release 0.1.

* configure (VERSION): Bump to 0.1.
* mes.c (main): Likewise.
* module/mes/repl.mes: Likewise.
This commit is contained in:
Jan Nieuwenhuizen 2016-11-20 21:47:47 +01:00
parent 09a21626a8
commit 3849c48f79
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 PACKAGE "mes")
(define VERSION "0.0")
(define VERSION "0.1")
(define PREFIX "/usr/local")
(define GUILE_EV (effective-version))
(define CC (or (getenv "CC") "gcc"))

2
mes.c
View File

@ -1036,7 +1036,7 @@ int
main (int argc, char *argv[])
{
if (argc > 1 && !strcmp (argv[1], "--help")) return puts ("Usage: mes < FILE\n");
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.0\n");
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.1\n");
scm *a = mes_environment ();
display_ (stderr, begin (read_file (read_env (a), a), a));
fputs ("", stderr);

View File

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