Release 0.3.
* configure (VERSION): Bump to 0.3. * mes.c (main): Likewise. * module/mes/repl.mes: Likewise.
This commit is contained in:
parent
661954a352
commit
90e5f16ef9
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.2")
|
||||
(define VERSION "0.3")
|
||||
(define PREFIX "/usr/local")
|
||||
(define GUILE_EV (effective-version))
|
||||
(define CC (or (getenv "CC") "gcc"))
|
||||
|
|
2
mes.c
2
mes.c
|
@ -1260,7 +1260,7 @@ main (int argc, char *argv[])
|
|||
ARENA_SIZE = atoi (getenv ("MES_ARENA"));
|
||||
if (argc > 1 && !strcmp (argv[1], "--dump")) g_dump_p = true;
|
||||
if (argc > 1 && !strcmp (argv[1], "--help")) return puts ("Usage: mes < FILE\n");
|
||||
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.2\n");
|
||||
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.3\n");
|
||||
g_stdin = stdin;
|
||||
SCM a = mes_environment ();
|
||||
if (argc > 1 && !strcmp (argv[1], "--load"))
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
(mes-use-module (mes scm))
|
||||
|
||||
(define welcome
|
||||
"Mes 0.2
|
||||
"Mes 0.3
|
||||
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