mirror of
https://github.com/janet-lang/janet
synced 2025-11-13 22:07:13 +00:00
Prepare for 1.39.0 release
This commit is contained in:
@@ -1,7 +1,10 @@
|
|||||||
# 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.39.0 - 2025-08-24
|
||||||
|
- Various bug fixes
|
||||||
|
- Add `net/socket`
|
||||||
|
- Add support for illumos OS
|
||||||
- Raise helpful errors for incorrect arguments to `import`.
|
- Raise helpful errors for incorrect arguments to `import`.
|
||||||
- Allow configuring `JANET_THREAD_LOCAL` during builds to allow multi-threading on unknown compilers.
|
- Allow configuring `JANET_THREAD_LOCAL` during builds to allow multi-threading on unknown compilers.
|
||||||
- Make `ffi/write` append to a buffer instead of insert at 0 by default.
|
- Make `ffi/write` append to a buffer instead of insert at 0 by default.
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -220,9 +220,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
|
|||||||
########################
|
########################
|
||||||
|
|
||||||
ifeq ($(UNAME), Darwin)
|
ifeq ($(UNAME), Darwin)
|
||||||
SONAME=libjanet.1.38.dylib
|
SONAME=libjanet.1.39.dylib
|
||||||
else
|
else
|
||||||
SONAME=libjanet.so.1.38
|
SONAME=libjanet.so.1.39
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(MINGW_COMPILER), clang)
|
ifeq ($(MINGW_COMPILER), clang)
|
||||||
|
|||||||
@@ -4,10 +4,10 @@
|
|||||||
#define JANETCONF_H
|
#define JANETCONF_H
|
||||||
|
|
||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 38
|
#define JANET_VERSION_MINOR 39
|
||||||
#define JANET_VERSION_PATCH 0
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.38.0"
|
#define JANET_VERSION "1.39.0"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user