diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6b1e5d..59fd9bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.0.0 - ?? + ## 0.5.0 - 2019-05-09 - Fix some bugs with buffers. - Add `trace` and `untrace` to the core library. diff --git a/src/include/janetconf.h b/src/include/janetconf.h index d12b92d4..59156e8a 100644 --- a/src/include/janetconf.h +++ b/src/include/janetconf.h @@ -25,7 +25,7 @@ #ifndef JANETCONF_H #define JANETCONF_H -#define JANET_VERSION "0.5.0" +#define JANET_VERSION "1.0.0-dev" /* #define JANET_BUILD "local" */ /* #define JANET_SINGLE_THREADED */ diff --git a/tools/cook.janet b/tools/cook.janet index 6bf5dfb0..321a25f4 100644 --- a/tools/cook.janet +++ b/tools/cook.janet @@ -139,7 +139,7 @@ (def out (file/open dest :w)) (def chunks (seq [b :in (file/read f :all)] (string b))) (file/write out - "#include \n" + "#include \n" "static const unsigned char bytes[] = {" ;(interpose ", " chunks) "};\n\n"