From 40ae2e812ff5e186ba578d441de9f3d2bebd93fb Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 27 Jan 2022 21:38:07 -0600 Subject: [PATCH] Prepare for 1.20.0 release. --- CHANGELOG.md | 3 ++- Makefile | 2 +- meson.build | 2 +- src/conf/janetconf.h | 6 +++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd3cb0ac..d550b1c1 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.20.0 - 2022-1-27 +- Add `:missing-symbol` hook to `compile` that will act as a catch-all macro for undefined symbols. - Add `:redef` dynamic binding that will allow users to redefine top-level bindings with late binding. This is intended for development use. - Fix a bug with reading from a stream returned by `os/open` on Windows and Linux. diff --git a/Makefile b/Makefile index df3bbfe6..a60c6e69 100644 --- a/Makefile +++ b/Makefile @@ -165,7 +165,7 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet ##### Amalgamation ##### ######################## -SONAME=libjanet.so.1.19 +SONAME=libjanet.so.1.20 build/c/shell.c: src/mainclient/shell.c cp $< $@ diff --git a/meson.build b/meson.build index 8376ae67..cd3374f2 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.19.2') + version : '1.20.0') # Global settings janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet') diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index b0719f80..cf4341ec 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -4,10 +4,10 @@ #define JANETCONF_H #define JANET_VERSION_MAJOR 1 -#define JANET_VERSION_MINOR 19 -#define JANET_VERSION_PATCH 2 +#define JANET_VERSION_MINOR 20 +#define JANET_VERSION_PATCH 0 #define JANET_VERSION_EXTRA "" -#define JANET_VERSION "1.19.2" +#define JANET_VERSION "1.20.0" /* #define JANET_BUILD "local" */