Skip to content

Commit 4e5889e

Browse files
committed
Prepare for 1.31.0 release.
1 parent a1b848a commit 4e5889e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## ??? - Unreleased
4+
## 1.31.0 - 2023-09-17
5+
- Report line and column when using `janet_dobytes`
6+
- Add `:unless` loop modifier
57
- Allow calling `reverse` on generators.
68
- Improve performance of a number of core functions including `partition`, `mean`, `keys`, `values`, `pairs`, `interleave`.
79
- Add `lengthable?`

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
196196
########################
197197

198198
ifeq ($(UNAME), Darwin)
199-
SONAME=libjanet.1.30.dylib
199+
SONAME=libjanet.1.31.dylib
200200
else
201-
SONAME=libjanet.so.1.30
201+
SONAME=libjanet.so.1.31
202202
endif
203203

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

meson.build

Lines changed: 1 addition & 1 deletion
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.30.0')
23+
version : '1.31.0')
2424

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

src/conf/janetconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 30
8-
#define JANET_VERSION_PATCH 0
8+
#define JANET_VERSION_PATCH 1
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.30.0"
10+
#define JANET_VERSION "1.31.0"
1111

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

0 commit comments

Comments
 (0)