Prepare for 1.23.0 release.

This commit is contained in:
Calvin Rose 2022-06-20 10:49:25 -05:00
parent 47e91bfd89
commit cfa39ab3b0
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.23.0 - ???
## 1.23.0 - 2022-06-20
- Add experimental `ffi/` module for interfacing with dynamic libraries and raw function pointers. Only available
on 64 bit linux, mac, and bsd systems.
- Allow using `&named` in function prototypes for named arguments. This is a more ergonomic

View File

@ -6,8 +6,8 @@
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 23
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.23.0-dev"
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.23.0"
/* #define JANET_BUILD "local" */