Latest Release
Download the source code or prebuilt binaries for your platform:
The latest version of Judo is 1.1.0 published on 2025-09-22T21:42:10Z.
Filename | Size | |
---|---|---|
judo-1.1.0.tar.gz | 388 KB |
Looking for previous versions? Check the GitHub releases page.
Release Notes
- Introduced a hard limit of 1 GB on the input size, mitigating potential overflows.
- Introduced a new error code
JUDO_RESULT_INPUT_TOO_LARGE
which is returned when the JSON being parsed exceeds 1 GB.
Building from Source
Building Judo from source requires a C compiler with at least C99 conformance.
- 1
- Download the source code for Judo.
- 2
Build with:
$ ./configure $ make $ make install
Building with CMake
- 1
- Install CMake.
- 2
- Download the source code for Judo.
- 3
-
Build with the following or choose a custom generator:
$ cmake -B build $ cmake --build build $ cmake --install build