mirror of
https://github.com/janet-lang/janet
synced 2024-12-02 21:09:55 +00:00
Merge pull request #1429 from pepe/prepare-134
This commit is contained in:
commit
c01b32c4f3
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,9 +1,19 @@
|
|||||||
# 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 - 2024-02-??
|
## 1.34.0 - 2024-03-22
|
||||||
- Add a new (split) PEG special by @ianthehenry
|
- Add a new (split) PEG special by @ianthehenry
|
||||||
- Add buffer/push-* sized int and float by @pnelson
|
- Add buffer/push-* sized int and float by @pnelson
|
||||||
|
- Documentation improvements: @amano-kenji, @llmII, @MaxGyver83, @pepe, @sogaiu.
|
||||||
|
- Expose _exit to skip certain cleanup with os/exit.
|
||||||
|
- Swap set / body order for each by @sogaiu.
|
||||||
|
- Abort on assert failure instead of exit.
|
||||||
|
- Fix: os/proc-wait by @llmII.
|
||||||
|
- Fix macex1 to keep syntax location for all tuples.
|
||||||
|
- Restore if-let tail calls.
|
||||||
|
- Don't try and resume fibers that can't be resumed.
|
||||||
|
- Register stream on unmarshal.
|
||||||
|
- Fix asm roundtrip issue.
|
||||||
|
|
||||||
## 1.33.0 - 2024-01-07
|
## 1.33.0 - 2024-01-07
|
||||||
- Add more + and * keywords to default-peg-grammar by @sogaiu.
|
- Add more + and * keywords to default-peg-grammar by @sogaiu.
|
||||||
|
4
Makefile
4
Makefile
@ -204,9 +204,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
|
|||||||
########################
|
########################
|
||||||
|
|
||||||
ifeq ($(UNAME), Darwin)
|
ifeq ($(UNAME), Darwin)
|
||||||
SONAME=libjanet.1.33.dylib
|
SONAME=libjanet.1.34.dylib
|
||||||
else
|
else
|
||||||
SONAME=libjanet.so.1.33
|
SONAME=libjanet.so.1.34
|
||||||
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.33.0')
|
version : '1.34.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 33
|
#define JANET_VERSION_MINOR 34
|
||||||
#define JANET_VERSION_PATCH 0
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.33.0"
|
#define JANET_VERSION "1.34.0"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user