1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-20 12:19:55 +00:00

Prepare for 1.22.0 release.

This commit is contained in:
bakpakin 2022-05-09 10:19:40 -05:00
parent 487d333024
commit 85129a1873
4 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,8 @@
# Changelog
All notable changes to this project will be documented in this file.
## Unreleased - ???
## 1.22.0 - 2022-05-09
- Prohibit negative size argument to `table/new`.
- Add `module/value`.
- Remove `file/popen`. Use `os/spawn` with the `:pipe` options instead.
- Fix bug in peg `thru` and `to` combinators.

View File

@ -167,9 +167,9 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
########################
ifeq ($(UNAME), Darwin)
SONAME=libjanet.1.21.dylib
SONAME=libjanet.1.22.dylib
else
SONAME=libjanet.so.1.21
SONAME=libjanet.so.1.22
endif
build/c/shell.c: src/mainclient/shell.c

View File

@ -20,7 +20,7 @@
project('janet', 'c',
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
version : '1.21.2')
version : '1.22.0')
# Global settings
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

0
tools/format.sh Executable file → Normal file
View File