mirror of
https://github.com/janet-lang/janet
synced 2024-11-24 17:27:18 +00:00
Bump version to 1.0.0
This commit is contained in:
parent
c82aac1365
commit
0a9715a94c
@ -2,6 +2,9 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Unreleased
|
## 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
|
- 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.
|
when the host program is not of a compatible version or configuration.
|
||||||
- Change signature of `os/execute` to be much more flexible.
|
- Change signature of `os/execute` to be much more flexible.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Version
|
# Version
|
||||||
!define VERSION "0.6.0"
|
!define VERSION "1.0.0"
|
||||||
!define PRODUCT_VERSION "${VERSION}.0"
|
!define PRODUCT_VERSION "${VERSION}.0"
|
||||||
VIProductVersion "${PRODUCT_VERSION}"
|
VIProductVersion "${PRODUCT_VERSION}"
|
||||||
VIFileVersion "${PRODUCT_VERSION}"
|
VIFileVersion "${PRODUCT_VERSION}"
|
||||||
|
@ -25,11 +25,11 @@
|
|||||||
#ifndef JANETCONF_H
|
#ifndef JANETCONF_H
|
||||||
#define JANETCONF_H
|
#define JANETCONF_H
|
||||||
|
|
||||||
#define JANET_VERSION_MAJOR 0
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 6
|
#define JANET_VERSION_MINOR 0
|
||||||
#define JANET_VERSION_PATCH 0
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA "-dev"
|
#define JANET_VERSION_EXTRA "-dev"
|
||||||
#define JANET_VERSION "0.6.0-dev"
|
#define JANET_VERSION "1.0.0-dev"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user