From 5a39a04a79cfb3b64b79462819340a4168e357dc Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Mon, 19 Jun 2023 06:48:33 -0500 Subject: [PATCH] Prepare for 1.29.0 release. --- CHANGELOG.md | 3 ++- Makefile | 4 ++-- src/conf/janetconf.h | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f9105c..b2c7bbce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog All notable changes to this project will be documented in this file. -## ??? - Unreleased +## 1.29.0 - 2023-06-19 +- Add support for passing booleans to PEGs for "always" and "never" matching. - Allow dictionary types for `take` and `drop` - Fix bug with closing channels while other fibers were waiting on them - `ev/take`, `ev/give`, and `ev/select` will now return the correct (documented) value when another fiber closes the channel. - Add `ffi/calling-conventions` to show all available calling conventions for FFI. diff --git a/Makefile b/Makefile index 404f76f2..85b2a7ba 100644 --- a/Makefile +++ b/Makefile @@ -195,9 +195,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile ######################## ifeq ($(UNAME), Darwin) -SONAME=libjanet.1.28.dylib +SONAME=libjanet.1.29.dylib else -SONAME=libjanet.so.1.28 +SONAME=libjanet.so.1.29 endif build/c/shell.c: src/mainclient/shell.c diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 73e39d55..be917286 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 28 +#define JANET_VERSION_MINOR 29 #define JANET_VERSION_PATCH 0 -#define JANET_VERSION_EXTRA "-dev" -#define JANET_VERSION "1.28.0-dev" +#define JANET_VERSION_EXTRA "" +#define JANET_VERSION "1.29.0" /* #define JANET_BUILD "local" */