1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-13 17:06:49 +00:00

Update CHANGELOG.

This commit is contained in:
Calvin Rose 2023-07-25 17:51:07 -05:00
parent bbdcd035ba
commit 080b37cb31
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
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 - ??? ## Unreleased - ???
- Change indexing of `array/remove` to start from -1 at the end instead of -2.
- Add new string escape sequences `\\a`, `\\b`, `\\?`, and `\\'`. - Add new string escape sequences `\\a`, `\\b`, `\\?`, and `\\'`.
- Fix bug with marshalling channels - Fix bug with marshalling channels
- Add `div` for floored division - Add `div` for floored division

View File

@ -48,7 +48,7 @@ SONAME_SETTER=-Wl,-soname,
# For cross compilation # For cross compilation
HOSTCC?=$(CC) HOSTCC?=$(CC)
HOSTAR?=$(AR) HOSTAR?=$(AR)
CFLAGS?=-O2 -g CFLAGS?=-O2
LDFLAGS?=-rdynamic LDFLAGS?=-rdynamic
RUN:=$(RUN) RUN:=$(RUN)
@ -364,7 +364,7 @@ build/janet.tmLanguage: tools/tm_lang_gen.janet $(JANET_TARGET)
$(RUN) $(JANET_TARGET) $< > $@ $(RUN) $(JANET_TARGET) $< > $@
compile-commands: compile-commands:
# Requires pip install copmiledb # Requires pip install compiledb
compiledb make compiledb make
clean: clean: