Skip to content

Commit

Permalink
bump Janet version to v1.34 (#2539)
Browse files Browse the repository at this point in the history
* bump janet to version 1.34.0

* remove unused strict: true from janet example

* update janetconf to new version
  • Loading branch information
AlecTroemel committed Apr 27, 2024
1 parent 9dd6cd8 commit 9f5ce52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/janet/janetconf.h
Expand Up @@ -4,10 +4,10 @@
#define JANETCONF_H

#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 31
#define JANET_VERSION_MINOR 34
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.31.0"
#define JANET_VERSION "1.34.0"

/* #define JANET_BUILD "local" */

Expand Down
1 change: 0 additions & 1 deletion demos/janetdemo.janet
Expand Up @@ -5,7 +5,6 @@
# license: MIT License (change this to your license of choice)
# version: 0.1
# script: janet
# strict: true

# Unlike other languages, the tic80 API
# is provided as a module.
Expand Down
2 changes: 1 addition & 1 deletion vendor/janet
Submodule janet updated 58 files
+2 −1 .builds/freebsd.yml
+1 −1 .builds/openbsd.yml
+1 −1 .github/workflows/test.yml
+5 −1 .gitignore
+48 −0 CHANGELOG.md
+19 −6 Makefile
+1 −1 README.md
+13 −10 build_win.bat
+5 −0 examples/posix-exec.janet
+20 −0 examples/weak-tables.janet
+46 −26 meson.build
+5 −2 meson_options.txt
+95 −53 src/boot/boot.janet
+5 −2 src/conf/janetconf.h
+2 −20 src/core/abstract.c
+24 −3 src/core/array.c
+6 −2 src/core/asm.c
+143 −2 src/core/buffer.c
+3 −0 src/core/bytecode.c
+41 −2 src/core/capi.c
+16 −13 src/core/corelib.c
+2 −2 src/core/debug.c
+4 −1 src/core/emit.c
+455 −615 src/core/ev.c
+2 −2 src/core/ffi.c
+8 −7 src/core/fiber.c
+3 −0 src/core/fiber.h
+150 −10 src/core/gc.c
+4 −0 src/core/gc.h
+1 −1 src/core/inttypes.c
+11 −2 src/core/io.c
+20 −3 src/core/marsh.c
+3 −3 src/core/math.c
+118 −51 src/core/net.c
+153 −53 src/core/os.c
+100 −6 src/core/peg.c
+20 −5 src/core/pp.c
+9 −3 src/core/run.c
+14 −20 src/core/specials.c
+2 −10 src/core/state.c
+7 −5 src/core/state.h
+3 −3 src/core/string.c
+1 −0 src/core/symcache.c
+57 −4 src/core/table.c
+7 −5 src/core/util.c
+2 −2 src/core/util.h
+4 −2 src/core/vm.c
+90 −66 src/include/janet.h
+2 −2 src/mainclient/shell.c
+6 −6 test/helper.janet
+8 −0 test/suite-asm.janet
+53 −1 test/suite-boot.janet
+40 −0 test/suite-buffer.janet
+41 −11 test/suite-ev.janet
+1 −1 test/suite-inttypes.janet
+12 −1 test/suite-os.janet
+96 −0 test/suite-peg.janet
+5 −1 test/suite-specials.janet

0 comments on commit 9f5ce52

Please sign in to comment.