From b966a7c63ae0b42058d194d1668211532f7de3fc Mon Sep 17 00:00:00 2001 From: Stephen Brennan Date: Thu, 16 Aug 2018 08:56:09 -0700 Subject: [PATCH] Release v1.0.0 --- CHANGELOG.md | 5 ++++- Makefile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d678a5c..7edaf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,10 @@ project will use [Semantic Versioning](https://semver.org) for non-beta releases changes may be made on minor version bumps, and feature additions / bug-fixes will be made on patch versions. -## [Unreleased] +## [1.0.0] - 2018-08-16 + +First 1.0 release. The API should now be stable enough for you to use! + ### Added - Line comments are now supported via the semicolon (`;`) character - New builtins: diff --git a/Makefile b/Makefile index c697ac2..8204bdf 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ OBJS=src/builtins.o src/charbuf.o src/gc.o src/hashtable.o src/iter.o \ src/parse.o src/ringbuf.o src/types.o src/util.o src/textcache.o # https://semver.org -VERSION=0.1.0 +VERSION=1.0.0 all: bin/libfunlisp.a bin/funlisp bin/repl bin/hello_repl bin/runfile \ bin/call_lisp FORCE -- 2.26.2