mirror of
https://github.com/janet-lang/janet
synced 2025-01-12 16:40:27 +00:00
Version bump to 1.28.0
This commit is contained in:
parent
fba1fdabe4
commit
358f5a03bf
@ -1,7 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Unreleased - ???
|
## 1.28.0 - 2023-05-13
|
||||||
- Various bug fixes
|
- Various bug fixes
|
||||||
- Make nested short-fn's behave a bit more predictably (it is still not recommended to nest short-fns).
|
- 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.
|
- Add `os/strftime` for date formatting.
|
||||||
|
4
Makefile
4
Makefile
@ -180,9 +180,9 @@ build/c/janet.c: $(JANET_BOOT) src/boot/boot.janet
|
|||||||
########################
|
########################
|
||||||
|
|
||||||
ifeq ($(UNAME), Darwin)
|
ifeq ($(UNAME), Darwin)
|
||||||
SONAME=libjanet.1.27.dylib
|
SONAME=libjanet.1.28.dylib
|
||||||
else
|
else
|
||||||
SONAME=libjanet.so.1.27
|
SONAME=libjanet.so.1.28
|
||||||
endif
|
endif
|
||||||
|
|
||||||
build/c/shell.c: src/mainclient/shell.c
|
build/c/shell.c: src/mainclient/shell.c
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
project('janet', 'c',
|
project('janet', 'c',
|
||||||
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
|
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
|
# Global settings
|
||||||
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
#define JANETCONF_H
|
#define JANETCONF_H
|
||||||
|
|
||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 27
|
#define JANET_VERSION_MINOR 28
|
||||||
#define JANET_VERSION_PATCH 0
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.27.0"
|
#define JANET_VERSION "1.28.0"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user