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 *shell* "sh")
|
||||||
(define PACKAGE "mes")
|
(define PACKAGE "mes")
|
||||||
(define VERSION "0.0")
|
(define VERSION "0.1")
|
||||||
(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
2
mes.c
|
@ -1036,7 +1036,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.0\n");
|
if (argc > 1 && !strcmp (argv[1], "--version")) return puts ("Mes 0.1\n");
|
||||||
scm *a = mes_environment ();
|
scm *a = mes_environment ();
|
||||||
display_ (stderr, begin (read_file (read_env (a), a), a));
|
display_ (stderr, begin (read_file (read_env (a), a), a));
|
||||||
fputs ("", stderr);
|
fputs ("", stderr);
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(define welcome
|
(define welcome
|
||||||
"Mes 0.0
|
"Mes 0.1
|
||||||
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'.
|
||||||
|
|
Loading…
Reference in a new issue