Skip to content

Commit 4e02f27

Browse files
committed
Prepare for 1.39.0 release
1 parent fd23446 commit 4e02f27

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

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

4-
## Unreleased - ???
4+
## 1.39.0 - 2025-08-24
5+
- Various bug fixes
6+
- Add `net/socket`
7+
- Add support for illumos OS
58
- Raise helpful errors for incorrect arguments to `import`.
69
- Allow configuring `JANET_THREAD_LOCAL` during builds to allow multi-threading on unknown compilers.
710
- Make `ffi/write` append to a buffer instead of insert at 0 by default.

Makefile

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

222222
ifeq ($(UNAME), Darwin)
223-
SONAME=libjanet.1.38.dylib
223+
SONAME=libjanet.1.39.dylib
224224
else
225-
SONAME=libjanet.so.1.38
225+
SONAME=libjanet.so.1.39
226226
endif
227227

228228
ifeq ($(MINGW_COMPILER), clang)

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 38
7+
#define JANET_VERSION_MINOR 39
88
#define JANET_VERSION_PATCH 0
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.38.0"
10+
#define JANET_VERSION "1.39.0"
1111

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

0 commit comments

Comments
 (0)