File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
- ## Unreleased - ???
4
+ ## 1.39.0 - 2025-08-24
5
+ - Various bug fixes
6
+ - Add ` net/socket `
7
+ - Add support for illumos OS
5
8
- Raise helpful errors for incorrect arguments to ` import ` .
6
9
- Allow configuring ` JANET_THREAD_LOCAL ` during builds to allow multi-threading on unknown compilers.
7
10
- Make ` ffi/write ` append to a buffer instead of insert at 0 by default.
Original file line number Diff line number Diff line change @@ -220,9 +220,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
220
220
# #######################
221
221
222
222
ifeq ($(UNAME ) , Darwin)
223
- SONAME =libjanet.1.38 .dylib
223
+ SONAME =libjanet.1.39 .dylib
224
224
else
225
- SONAME =libjanet.so.1.38
225
+ SONAME =libjanet.so.1.39
226
226
endif
227
227
228
228
ifeq ($(MINGW_COMPILER ) , clang)
Original file line number Diff line number Diff line change 4
4
#define JANETCONF_H
5
5
6
6
#define JANET_VERSION_MAJOR 1
7
- #define JANET_VERSION_MINOR 38
7
+ #define JANET_VERSION_MINOR 39
8
8
#define JANET_VERSION_PATCH 0
9
9
#define JANET_VERSION_EXTRA ""
10
- #define JANET_VERSION "1.38 .0"
10
+ #define JANET_VERSION "1.39 .0"
11
11
12
12
/* #define JANET_BUILD "local" */
13
13
You can’t perform that action at this time.
0 commit comments