aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2023-05-13 09:59:55 -0500
committerCalvin Rose <calsrose@gmail.com>2023-05-13 09:59:55 -0500
commit358f5a03bf9c003c32df8728253ba1e282fe3d69 (patch)
tree934ae1e10a6c6dfc2343654b269abc1a74b93153
parentUpdate short-fn to fix #1123 (diff)
Version bump to 1.28.0v1.28.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--Makefile4
-rw-r--r--meson.build2
-rw-r--r--src/conf/janetconf.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5d0bf7ef..26252642 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.
-## Unreleased - ???
+## 1.28.0 - 2023-05-13
- Various bug fixes
- Make nested short-fn's behave a bit more predictably (it is still not recommended to nest short-fns).
- Add `os/strftime` for date formatting.
diff --git a/Makefile b/Makefile
index f9aebce6..f2432311 100644
--- a/Makefile
+++ b/Makefile
@@ -180,9 +180,9 @@ build/c/janet.c: $(JANET_BOOT) src/boot/boot.janet
########################
ifeq ($(UNAME), Darwin)
-SONAME=libjanet.1.27.dylib
+SONAME=libjanet.1.28.dylib
else
-SONAME=libjanet.so.1.27
+SONAME=libjanet.so.1.28
endif
build/c/shell.c: src/mainclient/shell.c
diff --git a/meson.build b/meson.build
index 02e6d96d..e521538f 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.27.0')
+ version : '1.28.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 8b030b50..13d7f4ff 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 27
+#define JANET_VERSION_MINOR 28
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA ""
-#define JANET_VERSION "1.27.0"
+#define JANET_VERSION "1.28.0"
/* #define JANET_BUILD "local" */