Skip to content

Commit 73334f3

Browse files
committed
Prepare for 1.38.0 release.
1 parent a5b8da8 commit 73334f3

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

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

4-
## ??? - Unreleased
4+
## 1.38.0 - 2025-03-18
5+
- Add `bundle/replace`
56
- Add CLI flags for the `bundle/` module to install and manage bundles.
67
- Improve `?` peg special termination behavior
78
- Add IEEE hex floats to grammar.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
213213
########################
214214

215215
ifeq ($(UNAME), Darwin)
216-
SONAME=libjanet.1.37.dylib
216+
SONAME=libjanet.1.38.dylib
217217
else
218-
SONAME=libjanet.so.1.37
218+
SONAME=libjanet.so.1.38
219219
endif
220220

221221
ifeq ($(MINGW_COMPILER), clang)

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.37.1')
23+
version : '1.38.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 37
8-
#define JANET_VERSION_PATCH 1
7+
#define JANET_VERSION_MINOR 38
8+
#define JANET_VERSION_PATCH 0
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.37.1"
10+
#define JANET_VERSION "1.38.0"
1111

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

src/core/os.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,6 +1424,8 @@ JANET_CORE_FN(os_posix_exec,
14241424
"However, instead of creating a subprocess, the current process is replaced. Is not supported on Windows, and "
14251425
"does not allow redirection of stdio.") {
14261426
#ifdef JANET_WINDOWS
1427+
(void) argc;
1428+
(void) argv;
14271429
janet_panic("not supported on Windows");
14281430
#else
14291431
return os_execute_impl(argc, argv, JANET_EXECUTE_EXEC);

0 commit comments

Comments
 (0)