Bump version to 1.0.0

This commit is contained in:
Calvin Rose 2019-06-01 23:52:01 -04:00
parent c82aac1365
commit 0a9715a94c
3 changed files with 7 additions and 4 deletions

View File

@ -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.

View File

@ -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}"

View File

@ -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" */