Skip to content

Commit 85129a1

Browse files
committed
Prepare for 1.22.0 release.
1 parent 487d333 commit 85129a1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## Unreleased - ???
4+
## 1.22.0 - 2022-05-09
5+
- Prohibit negative size argument to `table/new`.
56
- Add `module/value`.
67
- Remove `file/popen`. Use `os/spawn` with the `:pipe` options instead.
78
- Fix bug in peg `thru` and `to` combinators.

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
167167
########################
168168

169169
ifeq ($(UNAME), Darwin)
170-
SONAME=libjanet.1.21.dylib
170+
SONAME=libjanet.1.22.dylib
171171
else
172-
SONAME=libjanet.so.1.21
172+
SONAME=libjanet.so.1.22
173173
endif
174174

175175
build/c/shell.c: src/mainclient/shell.c

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
project('janet', 'c',
2222
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.21.2')
23+
version : '1.22.0')
2424

2525
# Global settings
2626
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

tools/format.sh

100755100644
File mode changed.

0 commit comments

Comments
 (0)