Prepare for 1.23.0 release.

This commit is contained in:
Calvin Rose 2022-06-19 15:07:35 -05:00
parent cfaae47cea
commit 0a15a5ee56
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.
## Unreleased - ???
## 1.23.0 - ???
- 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

@ -168,9 +168,9 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
########################
ifeq ($(UNAME), Darwin)
SONAME=libjanet.1.22.dylib
SONAME=libjanet.1.23.dylib
else
SONAME=libjanet.so.1.22
SONAME=libjanet.so.1.23
endif
build/c/shell.c: src/mainclient/shell.c

View File

@ -20,7 +20,7 @@
project('janet', 'c',
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
version : '1.22.1')
version : '1.23.0')
# Global settings
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

View File

@ -4,10 +4,10 @@
#define JANETCONF_H
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 22
#define JANET_VERSION_PATCH 1
#define JANET_VERSION_MINOR 23
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.22.1-dev"
#define JANET_VERSION "1.23.0-dev"
/* #define JANET_BUILD "local" */