From 358f5a03bf9c003c32df8728253ba1e282fe3d69 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 13 May 2023 09:59:55 -0500 Subject: [PATCH] Version bump to 1.28.0 --- CHANGELOG.md | 2 +- Makefile | 4 ++-- meson.build | 2 +- src/conf/janetconf.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d0bf7ef6..262526427 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 f9aebce69..f2432311c 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 02e6d96da..e521538fc 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 8b030b509..13d7f4ff2 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" */