Skip to content

Commit ecc4d80

Browse files
committed
Prepare for 1.30.0 release.
1 parent 3df24c5 commit ecc4d80

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

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

4-
## Unreleased - ???
4+
## 1.30.0 - 2023-08-05
55
- Change indexing of `array/remove` to start from -1 at the end instead of -2.
66
- Add new string escape sequences `\\a`, `\\b`, `\\?`, and `\\'`.
77
- Fix bug with marshalling channels

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.29.dylib
199+
SONAME=libjanet.1.30.dylib
200200
else
201-
SONAME=libjanet.so.1.29
201+
SONAME=libjanet.so.1.30
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.29.1')
23+
version : '1.30.0')
2424

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

src/conf/janetconf.h

Lines changed: 3 additions & 3 deletions
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 29
8-
#define JANET_VERSION_PATCH 1
7+
#define JANET_VERSION_MINOR 30
8+
#define JANET_VERSION_PATCH 0
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.29.1"
10+
#define JANET_VERSION "1.30.0"
1111

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

0 commit comments

Comments
 (0)