From 85129a18734f5fee377d6abf89c6ffc74025a5b0 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Mon, 9 May 2022 10:19:40 -0500 Subject: [PATCH] Prepare for 1.22.0 release. --- CHANGELOG.md | 3 ++- Makefile | 4 ++-- meson.build | 2 +- tools/format.sh | 0 4 files changed, 5 insertions(+), 4 deletions(-) mode change 100755 => 100644 tools/format.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ede4780..e50db78d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Makefile b/Makefile index ab107ec6..f8c4cfbb 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/meson.build b/meson.build index 86ba985a..b28f33ca 100644 --- a/meson.build +++ b/meson.build @@ -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') diff --git a/tools/format.sh b/tools/format.sh old mode 100755 new mode 100644