Skip to content

Commit

Permalink
Prepare for 1.29.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Jun 19, 2023
1 parent 2fde34b commit 5a39a04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/conf/janetconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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" */

Expand Down

0 comments on commit 5a39a04

Please sign in to comment.