1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-26 00:10:27 +00:00

Update to version 1.2.0.

This commit is contained in:
Calvin Rose 2019-08-08 18:51:24 -05:00
parent 4ba912cd57
commit ec62e871dd
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Changelog # Changelog
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 ## 1.2.0 - 2019-08-08
- Add `take` and `drop` functions that are easier to use compared to the - Add `take` and `drop` functions that are easier to use compared to the
existing slice functions. existing slice functions.
- Add optional default value to `get`. - Add optional default value to `get`.

View File

@ -29,8 +29,8 @@
#define JANET_VERSION_MAJOR 1 #define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 2 #define JANET_VERSION_MINOR 2
#define JANET_VERSION_PATCH 0 #define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "-dev" #define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.2.0-dev" #define JANET_VERSION "1.2.0"
/* #define JANET_BUILD "local" */ /* #define JANET_BUILD "local" */