1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-21 12:43:15 +00:00

Prepare for 1.29.0 release.

This commit is contained in:
Calvin Rose 2023-06-19 06:48:33 -05:00
parent 2fde34b519
commit 5a39a04a79
3 changed files with 7 additions and 6 deletions

View File

@ -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.

View File

@ -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

View File

@ -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" */