Skip to content

Commit

Permalink
Revert "bump Janet version to v1.34 (#2539)"
Browse files Browse the repository at this point in the history
This reverts commit 9f5ce52.
  • Loading branch information
nesbox committed Apr 27, 2024
1 parent 9f5ce52 commit 8c769f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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 34
#define JANET_VERSION_MINOR 31
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.34.0"
#define JANET_VERSION "1.31.0"

/* #define JANET_BUILD "local" */

Expand Down
1 change: 1 addition & 0 deletions demos/janetdemo.janet
Expand Up @@ -5,6 +5,7 @@
# 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
+1 −2 .builds/freebsd.yml
+1 −1 .builds/openbsd.yml
+1 −1 .github/workflows/test.yml
+1 −5 .gitignore
+0 −48 CHANGELOG.md
+6 −19 Makefile
+1 −1 README.md
+10 −13 build_win.bat
+0 −5 examples/posix-exec.janet
+0 −20 examples/weak-tables.janet
+26 −46 meson.build
+2 −5 meson_options.txt
+53 −95 src/boot/boot.janet
+2 −5 src/conf/janetconf.h
+20 −2 src/core/abstract.c
+3 −24 src/core/array.c
+2 −6 src/core/asm.c
+2 −143 src/core/buffer.c
+0 −3 src/core/bytecode.c
+2 −41 src/core/capi.c
+13 −16 src/core/corelib.c
+2 −2 src/core/debug.c
+1 −4 src/core/emit.c
+615 −455 src/core/ev.c
+2 −2 src/core/ffi.c
+7 −8 src/core/fiber.c
+0 −3 src/core/fiber.h
+10 −150 src/core/gc.c
+0 −4 src/core/gc.h
+1 −1 src/core/inttypes.c
+2 −11 src/core/io.c
+3 −20 src/core/marsh.c
+3 −3 src/core/math.c
+51 −118 src/core/net.c
+53 −153 src/core/os.c
+6 −100 src/core/peg.c
+5 −20 src/core/pp.c
+3 −9 src/core/run.c
+20 −14 src/core/specials.c
+10 −2 src/core/state.c
+5 −7 src/core/state.h
+3 −3 src/core/string.c
+0 −1 src/core/symcache.c
+4 −57 src/core/table.c
+5 −7 src/core/util.c
+2 −2 src/core/util.h
+2 −4 src/core/vm.c
+66 −90 src/include/janet.h
+2 −2 src/mainclient/shell.c
+6 −6 test/helper.janet
+0 −8 test/suite-asm.janet
+1 −53 test/suite-boot.janet
+0 −40 test/suite-buffer.janet
+11 −41 test/suite-ev.janet
+1 −1 test/suite-inttypes.janet
+1 −12 test/suite-os.janet
+0 −96 test/suite-peg.janet
+1 −5 test/suite-specials.janet

0 comments on commit 8c769f8

Please sign in to comment.