From 9d9732af97090f028fcf12015038a0ec704babeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Wed, 20 Mar 2024 09:57:57 +0100 Subject: [PATCH 1/6] Update changelog for 1.34.0 --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fcdc6b9..bb0ce6cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # Changelog All notable changes to this project will be documented in this file. -## Unreleased - 2024-02-?? +## Unreleased - 2024-03-21 - Add a new (split) PEG special by @ianthehenry - Add buffer/push-* sized int and float by @pnelson +- Fixed and tweaked many docs by @sogaiu. +- Expose _exit to skip certain cleanup with os/exit +- Abort on assert failure instead of exit. +- Fix: os/proc-wait. +- Fix macex1 to keep syntax location for all tuples. +- 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. From 9f9146ffae4e215cff6a892b57fff6254e1acee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Wed, 20 Mar 2024 10:11:08 +0100 Subject: [PATCH 2/6] Prepare for 1.34.0 release --- Makefile | 4 ++-- meson.build | 2 +- src/conf/janetconf.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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" */ From 9819994999221d1d44794657ed40fef47b00b90b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Wed, 20 Mar 2024 10:32:13 +0100 Subject: [PATCH 3/6] Correct changelog --- CHANGELOG.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0ce6cf..f6dba0c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. -## Unreleased - 2024-03-21 +## 1.34.0 - 2024-03-21 - Add a new (split) PEG special by @ianthehenry - Add buffer/push-* sized int and float by @pnelson -- Fixed and tweaked many docs by @sogaiu. +- Documentation improvements: @amano-kenji, @MaxGyver83, @sogaiu, @pepe. - Expose _exit to skip certain cleanup with os/exit -- Abort on assert failure instead of exit. -- Fix: os/proc-wait. +- 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. From b317ab755c07cf2cb30fbbfc886e0136671cfb27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Wed, 20 Mar 2024 10:34:30 +0100 Subject: [PATCH 4/6] One more commit --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6dba0c4..cd5117b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file. - Add buffer/push-* sized int and float by @pnelson - Documentation improvements: @amano-kenji, @MaxGyver83, @sogaiu, @pepe. - Expose _exit to skip certain cleanup with os/exit -- Abort on assert failure instead of 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. From ed56d5d6ffa02787795165f912f6d3cd8433fcc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Wed, 20 Mar 2024 10:40:30 +0100 Subject: [PATCH 5/6] Add @llmII to docs --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd5117b9..5e5e194b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,8 @@ All notable changes to this project will be documented in this file. ## 1.34.0 - 2024-03-21 - Add a new (split) PEG special by @ianthehenry - Add buffer/push-* sized int and float by @pnelson -- Documentation improvements: @amano-kenji, @MaxGyver83, @sogaiu, @pepe. -- Expose _exit to skip certain cleanup with os/exit +- Documentation improvements: @amano-kenji, @MaxGyver83, @sogaiu, @pepe, @llmII. +- 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. From ee11ff9da92823f25df9462d6b975f8a0a7da5f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Posp=C3=AD=C5=A1il?= Date: Fri, 22 Mar 2024 07:54:23 +0100 Subject: [PATCH 6/6] Move date and sort people --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e5e194b..cf3eeb71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. -## 1.34.0 - 2024-03-21 +## 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, @MaxGyver83, @sogaiu, @pepe, @llmII. +- 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.