Skip to content

Commit 358f5a0

Browse files
committed
Version bump to 1.28.0
1 parent fba1fda commit 358f5a0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.28.0 - 2023-05-13
55
- Various bug fixes
66
- Make nested short-fn's behave a bit more predictably (it is still not recommended to nest short-fns).
77
- Add `os/strftime` for date formatting.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ build/c/janet.c: $(JANET_BOOT) src/boot/boot.janet
180180
########################
181181

182182
ifeq ($(UNAME), Darwin)
183-
SONAME=libjanet.1.27.dylib
183+
SONAME=libjanet.1.28.dylib
184184
else
185-
SONAME=libjanet.so.1.27
185+
SONAME=libjanet.so.1.28
186186
endif
187187

188188
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.27.0')
23+
version : '1.28.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
@@ -4,10 +4,10 @@
44
#define JANETCONF_H
55

66
#define JANET_VERSION_MAJOR 1
7-
#define JANET_VERSION_MINOR 27
7+
#define JANET_VERSION_MINOR 28
88
#define JANET_VERSION_PATCH 0
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.27.0"
10+
#define JANET_VERSION "1.28.0"
1111

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

0 commit comments

Comments
 (0)