1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-13 17:06:49 +00:00

Update CHANGELOG and version numbers.

This commit is contained in:
Calvin Rose 2022-08-26 13:15:30 -05:00
parent 1f7f20788c
commit 03ba1f7021
4 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,10 @@
# 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
- Reduce number of hash collisiions from pointer hashing
- Add optional parameter to `marshal` to skip cycle checking code.
## 1.24.1 - 2022-08-24 ## 1.24.1 - 2022-08-24
- Fix FFI bug on Linux/Posix - Fix FFI bug on Linux/Posix
- Improve parse error messages for bad delimiters. - Improve parse error messages for bad delimiters.

View File

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

View File

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

View File

@ -4,10 +4,10 @@
#define JANETCONF_H #define JANETCONF_H
#define JANET_VERSION_MAJOR 1 #define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 24 #define JANET_VERSION_MINOR 25
#define JANET_VERSION_PATCH 1 #define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "" #define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.24.1" #define JANET_VERSION "1.25.0-dev"
/* #define JANET_BUILD "local" */ /* #define JANET_BUILD "local" */