diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fcdc6b9..cf3eeb71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,19 @@ # Changelog All notable changes to this project will be documented in this file. -## Unreleased - 2024-02-?? +## 1.34.0 - 2024-03-22 - Add a new (split) PEG special by @ianthehenry - Add buffer/push-* sized int and float by @pnelson +- Documentation improvements: @amano-kenji, @llmII, @MaxGyver83, @pepe, @sogaiu. +- Expose _exit to skip certain cleanup with os/exit. +- Swap set / body order for each by @sogaiu. +- Abort on assert failure instead of exit. +- Fix: os/proc-wait by @llmII. +- Fix macex1 to keep syntax location for all tuples. +- Restore if-let tail calls. +- Don't try and resume fibers that can't be resumed. +- Register stream on unmarshal. +- Fix asm roundtrip issue. ## 1.33.0 - 2024-01-07 - Add more + and * keywords to default-peg-grammar by @sogaiu. diff --git a/Makefile b/Makefile index f69e8169..b143680b 100644 --- a/Makefile +++ b/Makefile @@ -204,9 +204,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile ######################## ifeq ($(UNAME), Darwin) -SONAME=libjanet.1.33.dylib +SONAME=libjanet.1.34.dylib else -SONAME=libjanet.so.1.33 +SONAME=libjanet.so.1.34 endif build/c/shell.c: src/mainclient/shell.c diff --git a/meson.build b/meson.build index aea12a9d..47e24987 100644 --- a/meson.build +++ b/meson.build @@ -20,7 +20,7 @@ project('janet', 'c', default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'], - version : '1.33.0') + version : '1.34.0') # Global settings janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet') diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 66177838..a51bde90 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -4,10 +4,10 @@ #define JANETCONF_H #define JANET_VERSION_MAJOR 1 -#define JANET_VERSION_MINOR 33 +#define JANET_VERSION_MINOR 34 #define JANET_VERSION_PATCH 0 #define JANET_VERSION_EXTRA "" -#define JANET_VERSION "1.33.0" +#define JANET_VERSION "1.34.0" /* #define JANET_BUILD "local" */