diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6d9aab..6cad46c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. ## Unreleased +- Add scratch memory C API functions for auto-released memory on next gc. + Scratch memory differs from normal GCed memory as it can also be freed normally + for better performance. - Add API compatibility checking for modules. This will let native modules not load when the host program is not of a compatible version or configuration. - Change signature of `os/execute` to be much more flexible. diff --git a/janet-installer.nsi b/janet-installer.nsi index 521901c1..694d9ccf 100644 --- a/janet-installer.nsi +++ b/janet-installer.nsi @@ -1,5 +1,5 @@ # Version -!define VERSION "0.6.0" +!define VERSION "1.0.0" !define PRODUCT_VERSION "${VERSION}.0" VIProductVersion "${PRODUCT_VERSION}" VIFileVersion "${PRODUCT_VERSION}" diff --git a/src/include/janetconf.h b/src/include/janetconf.h index 12eff37e..5ff9e9ee 100644 --- a/src/include/janetconf.h +++ b/src/include/janetconf.h @@ -25,11 +25,11 @@ #ifndef JANETCONF_H #define JANETCONF_H -#define JANET_VERSION_MAJOR 0 -#define JANET_VERSION_MINOR 6 +#define JANET_VERSION_MAJOR 1 +#define JANET_VERSION_MINOR 0 #define JANET_VERSION_PATCH 0 #define JANET_VERSION_EXTRA "-dev" -#define JANET_VERSION "0.6.0-dev" +#define JANET_VERSION "1.0.0-dev" /* #define JANET_BUILD "local" */