Skip to content

Commit 40ae2e8

Browse files
committed
Prepare for 1.20.0 release.
1 parent 06f613e commit 40ae2e8

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
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.20.0 - 2022-1-27
5+
- Add `:missing-symbol` hook to `compile` that will act as a catch-all macro for undefined symbols.
56
- Add `:redef` dynamic binding that will allow users to redefine top-level bindings with late binding. This
67
is intended for development use.
78
- Fix a bug with reading from a stream returned by `os/open` on Windows and Linux.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
165165
##### Amalgamation #####
166166
########################
167167

168-
SONAME=libjanet.so.1.19
168+
SONAME=libjanet.so.1.20
169169

170170
build/c/shell.c: src/mainclient/shell.c
171171
cp $< $@

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.19.2')
23+
version : '1.20.0')
2424

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

src/conf/janetconf.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
#define JANETCONF_H
55

66
#define JANET_VERSION_MAJOR 1
7-
#define JANET_VERSION_MINOR 19
8-
#define JANET_VERSION_PATCH 2
7+
#define JANET_VERSION_MINOR 20
8+
#define JANET_VERSION_PATCH 0
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.19.2"
10+
#define JANET_VERSION "1.20.0"
1111

1212
/* #define JANET_BUILD "local" */
1313

0 commit comments

Comments
 (0)