1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-18 11:19:56 +00:00

Update changelog, change version to 0.6.0

This commit is contained in:
Calvin Rose 2019-05-28 13:59:12 -04:00
parent 873054d055
commit 486b80fa7b
2 changed files with 9 additions and 4 deletions

View File

@ -1,8 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.0.0 - ??
## 0.6.0 - ??
- Add `jpm` tool for building and managing projects.
- Change interface to `cook` tool.
- Add optional filters to `module/paths` to further refine import methods.
- Add keyword arguments via `&keys` in parameter list.
- Add `-k` flag for flychecking source.

View File

@ -25,22 +25,25 @@
#ifndef JANETCONF_H
#define JANETCONF_H
#define JANET_VERSION "1.0.0"
#define JANET_VERSION "0.6.0"
/* #define JANET_BUILD "local" */
/* These settings all affect linking, so use cautiously. */
/* #define JANET_SINGLE_THREADED */
/* #define JANET_NO_DYNAMIC_MODULES */
/* #define JANET_NO_NANBOX */
/* #define JANET_API __attribute__((visibility ("default"))) */
/* #define JANET_NO_ASSEMBLER */
/* #define JANET_NO_PEG */
/* #define JANET_NO_TYPED_ARRAY */
/* #define JANET_NO_INT_TYPES */
/* #define JANET_REDUCED_OS */
/* #define JANET_API __attribute__((visibility ("default"))) */
/* #define JANET_OUT_OF_MEMORY do { printf("janet out of memory\n"); exit(1); } while (0) */
/* #define JANET_RECURSION_GUARD 1024 */
/* #define JANET_MAX_PROTO_DEPTH 200 */
/* #define JANET_MAX_MACRO_EXPAND 200 */
/* #define JANET_STACK_MAX 16384 */
/* #define JANET_NO_NANBOX */
#endif /* end of include guard: JANETCONF_H */