diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c08561..a9b3ccfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.33.0 - 2023-01-07 +- Add more + and * keywords to default-peg-grammar by @sogaiu. +- Use libc strlen in janet_buffer_push_cstring by @williewillus. +- Be a bit safer with reference counting. +- Add support for atomic loads in Janet's atomic abstraction. +- Fix poll event loop CPU usage issue. +- Add ipv6, shared, and cryptorand options to meson. +- Add more ipv6 feature detection. +- Fix loop for forever loop. +- Cleaned up unused NetStateConnect, fixed janet_async_end() ev refcount by @zevv. +- Fix warnings w/ MSVC and format. +- Fix marshal_one_env w/ JANET_MARSHAL_UNSAFE. +- Fix `(default)`. +- Fix cannot marshal fiber with c stackframe, in a dynamic way that is fairly conservative. +- Fix typo for SIGALARM in os/proc-kill. +- Prevent bytecode optimization from remove mk* instructions. +- Fix arity typo in peg.c by @pepe. +- Update Makefile for MinGW. +- Fix canceling waiting fiber. +- Add a new (sub) PEG special by @ianthehenry. +- Fix if net/server's handler has incorrect arity. +- Fix macex raising on (). + ## 1.32.1 - 2023-10-15 - Fix return value from C function `janet_dobytes` when called on Janet functions that yield to event loop. - Change C API for event loop interaction - get rid of JanetListener and instead use `janet_async_start` and `janet_async_end`. diff --git a/Makefile b/Makefile index 8b7a9460..f69e8169 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.32.dylib +SONAME=libjanet.1.33.dylib else -SONAME=libjanet.so.1.32 +SONAME=libjanet.so.1.33 endif build/c/shell.c: src/mainclient/shell.c diff --git a/meson.build b/meson.build index 9d3617b4..aea12a9d 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.32.1') + version : '1.33.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 4b97667a..7110e5c3 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 32 -#define JANET_VERSION_PATCH 1 +#define JANET_VERSION_MINOR 33 +#define JANET_VERSION_PATCH 0 #define JANET_VERSION_EXTRA "" -#define JANET_VERSION "1.32.1" +#define JANET_VERSION "1.33.0" /* #define JANET_BUILD "local" */