mirror of
https://github.com/janet-lang/janet
synced 2024-11-16 05:34:48 +00:00
Prepare for 1.22.0 release.
This commit is contained in:
parent
487d333024
commit
85129a1873
@ -1,7 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
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`.
|
- Add `module/value`.
|
||||||
- Remove `file/popen`. Use `os/spawn` with the `:pipe` options instead.
|
- Remove `file/popen`. Use `os/spawn` with the `:pipe` options instead.
|
||||||
- Fix bug in peg `thru` and `to` combinators.
|
- Fix bug in peg `thru` and `to` combinators.
|
||||||
|
4
Makefile
4
Makefile
@ -167,9 +167,9 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
|
|||||||
########################
|
########################
|
||||||
|
|
||||||
ifeq ($(UNAME), Darwin)
|
ifeq ($(UNAME), Darwin)
|
||||||
SONAME=libjanet.1.21.dylib
|
SONAME=libjanet.1.22.dylib
|
||||||
else
|
else
|
||||||
SONAME=libjanet.so.1.21
|
SONAME=libjanet.so.1.22
|
||||||
endif
|
endif
|
||||||
|
|
||||||
build/c/shell.c: src/mainclient/shell.c
|
build/c/shell.c: src/mainclient/shell.c
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
project('janet', 'c',
|
project('janet', 'c',
|
||||||
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
|
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
|
# Global settings
|
||||||
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
||||||
|
0
tools/format.sh
Executable file → Normal file
0
tools/format.sh
Executable file → Normal file
Loading…
Reference in New Issue
Block a user