Skip to content

Commit

Permalink
bump janet version to 1.29.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nesbox committed Aug 2, 2023
1 parent e7fbd51 commit cd05d0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- name: Build
shell: cmd
run: |
COPY /Y build\janet\janetconf.h vendor\janet\src\conf\janetconf.h
cd build
cmake -G "Visual Studio 16 2019" -A Win32 -T v141_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DBUILD_STUB=On ..
cmake --build . --config %BUILD_TYPE% --parallel
Expand Down Expand Up @@ -56,6 +57,7 @@ jobs:
- name: Build
shell: cmd
run: |
COPY /Y build\janet\janetconf.h vendor\janet\src\conf\janetconf.h
cd build
cmake -G "Visual Studio 16 2019" -A Win32 -T v141_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DBUILD_PRO=On ..
cmake --build . --config %BUILD_TYPE% --parallel
Expand Down
4 changes: 2 additions & 2 deletions build/janet/janetconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#define JANETCONF_H

#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 27
#define JANET_VERSION_MINOR 29
#define JANET_VERSION_PATCH 1
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.27.0"
#define JANET_VERSION "1.29.1"

/* #define JANET_BUILD "local" */

Expand Down
2 changes: 1 addition & 1 deletion vendor/janet
Submodule janet updated 84 files
+17 −0 .github/workflows/test.yml
+35 −0 CHANGELOG.md
+42 −22 Makefile
+163 −67 README.md
+0 −3 examples/ffi/so.c
+10 −0 janet.1
+29 −16 meson.build
+284 −181 src/boot/boot.janet
+0 −1 src/boot/system_test.c
+3 −3 src/conf/janetconf.h
+0 −1 src/core/asm.c
+2 −2 src/core/buffer.c
+284 −0 src/core/bytecode.c
+18 −4 src/core/capi.c
+24 −7 src/core/compile.c
+5 −0 src/core/compile.h
+7 −1 src/core/corelib.c
+1 −0 src/core/debug.c
+161 −68 src/core/ev.c
+16 −1 src/core/features.h
+32 −10 src/core/ffi.c
+32 −13 src/core/fiber.c
+20 −6 src/core/inttypes.c
+0 −1 src/core/io.c
+37 −37 src/core/math.c
+116 −13 src/core/net.c
+221 −43 src/core/os.c
+5 −3 src/core/parse.c
+21 −7 src/core/peg.c
+7 −6 src/core/pp.c
+10 −0 src/core/regalloc.c
+1 −0 src/core/regalloc.h
+126 −35 src/core/specials.c
+2 −0 src/core/state.h
+37 −10 src/core/string.c
+1 −0 src/core/symcache.c
+119 −26 src/core/util.c
+11 −1 src/core/util.h
+12 −10 src/core/value.c
+1 −1 src/core/vector.c
+2 −1 src/core/vm.c
+12 −6 src/include/janet.h
+4 −2 src/mainclient/shell.c
+22 −7 test/helper.janet
+81 −0 test/suite-array.janet
+55 −0 test/suite-asm.janet
+907 −0 test/suite-boot.janet
+120 −0 test/suite-buffer.janet
+20 −19 test/suite-capi.janet
+34 −0 test/suite-cfuns.janet
+77 −0 test/suite-compile.janet
+141 −0 test/suite-corelib.janet
+34 −0 test/suite-debug.janet
+89 −23 test/suite-ev.janet
+12 −10 test/suite-ffi.janet
+258 −0 test/suite-inttypes.janet
+82 −0 test/suite-io.janet
+142 −0 test/suite-marsh.janet
+69 −0 test/suite-math.janet
+133 −0 test/suite-os.janet
+192 −0 test/suite-parse.janet
+664 −0 test/suite-peg.janet
+65 −0 test/suite-pp.janet
+202 −0 test/suite-specials.janet
+84 −60 test/suite-string.janet
+44 −0 test/suite-strtod.janet
+94 −0 test/suite-struct.janet
+42 −0 test/suite-symcache.janet
+72 −0 test/suite-table.janet
+296 −0 test/suite-unknown.janet
+72 −0 test/suite-value.janet
+142 −0 test/suite-vm.janet
+0 −437 test/suite0000.janet
+0 −356 test/suite0001.janet
+0 −496 test/suite0003.janet
+0 −86 test/suite0004.janet
+0 −101 test/suite0005.janet
+0 −264 test/suite0006.janet
+0 −330 test/suite0007.janet
+0 −359 test/suite0008.janet
+0 −219 test/suite0010.janet
+0 −108 test/suite0011.janet
+0 −20 test/suite0014.janet
+0 −48 test/suite0015.janet

0 comments on commit cd05d0a

Please sign in to comment.