Release 0.1.
* configure (VERSION): Bump to 0.1. * mes.c (main): Likewise. * module/mes/repl.mes: Likewise.
This commit is contained in:
parent
09a21626a8
commit
3849c48f79
2
configure
vendored
2
configure
vendored
|
@ -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
2
mes.c
|
@ -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);
|
||||
|
|
|
@ -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'.
|
||||
|
|
Loading…
Reference in a new issue