Releases: Kink-Development-Group/hyp-runtime
Releases · Kink-Development-Group/hyp-runtime
v1.2.0
HypnoScript Rust Release
This release contains the Rust-based HypnoScript runtime and CLI tools.
Features
- ✅ Complete HypnoScript language implementation
- ✅ Full compiler (Lexer, Parser, Type Checker, Interpreter, WASM Codegen)
- ✅ 110+ builtin functions
- ✅ Cross-platform support (Windows, Linux, macOS)
- ✅ Native performance (no GC overhead)
- ✅ Memory safe by design
Downloads
Choose the appropriate binary for your platform:
- Linux x64: hypnoscript-linux-x64.tar.gz
- Linux x64 (musl): hypnoscript-linux-x64-musl.tar.gz (static binary)
- Windows x64: hypnoscript-windows-x64.zip
- macOS x64: hypnoscript-macos-x64.tar.gz
- macOS ARM64: hypnoscript-macos-arm64.tar.gz
- Debian/Ubuntu: hypnoscript_*.deb
Installation
Automatic setup (Linux/macOS)
curl -fsSL https://kink-development-group.github.io/hyp-runtime/install.sh | bashThe script detects system & architecture, verifies checksums, and updates existing installations.
Linux/macOS
# Extract the archive
tar -xzf hypnoscript-*.tar.gz
# Move binaries to PATH (choose the appropriate platform binary)
sudo mv hypnoscript-linux-x64 /usr/local/bin/hypnoscript
sudo chmod +x /usr/local/bin/hypnoscript
# Test installation
hypnoscript versionWindows
# Extract the zip
# Add to PATH or run directly
.\hypnoscript-windows-x64.exe versionDebian/Ubuntu
sudo dpkg -i hypnoscript_*.deb
hypnoscript versionChecksums
SHA256 checksums are provided for all binaries. Verify with:
sha256sum -c hypnoscript-*.sha256Version Release 1.0.0
HypnoScript Rust Release
This release contains the Rust-based HypnoScript runtime and CLI tools.
Features
- ✅ Complete HypnoScript language implementation
- ✅ Full compiler (Lexer, Parser, Type Checker, Interpreter, WASM Codegen)
- ✅ 110+ builtin functions
- ✅ Cross-platform support (Windows, Linux, macOS)
- ✅ Native performance (no GC overhead)
- ✅ Memory safe by design
Downloads
Choose the appropriate binary for your platform:
- Linux x64: hypnoscript-linux-x64.tar.gz
- Linux x64 (musl): hypnoscript-linux-x64-musl.tar.gz (static binary)
- Windows x64: hypnoscript-windows-x64.zip
- macOS x64: hypnoscript-macos-x64.tar.gz
- macOS ARM64: hypnoscript-macos-arm64.tar.gz
- Debian/Ubuntu: hypnoscript_*.deb
Installation
Automatisches Setup (Linux/macOS)
curl -fsSL https://kink-development-group.github.io/hyp-runtime/install.sh | bashDas Skript erkennt System & Architektur, verifiziert Checksums und aktualisiert vorhandene Installationen.
Linux/macOS
# Extract the archive
tar -xzf hypnoscript-*.tar.gz
# Move to PATH
sudo mv hypnoscript-* /usr/local/bin/hypnoscript-cli
# Test installation
hypnoscript-cli versionWindows
# Extract the zip
# Add to PATH or run directly
.\hypnoscript-windows-x64.exe versionDebian/Ubuntu
sudo dpkg -i hypnoscript_*.deb
hypnoscript-cli versionChecksums
SHA256 checksums are provided for all binaries. Verify with:
sha256sum -c hypnoscript-*.sha256Pre Release 1.0.0-rc2
What's Changed
- Complete Rust runtime rewrite: Full compiler with Type Checker, WASM Codegen, and CI/CD Pipelines - 100% complete by @Copilot in #3
- Adding GH Actions by @JosunLP in #7
- 1.0.0-rc2 by @JosunLP in #10
New Contributors
- @Copilot made their first contribution in #3
Full Changelog: https://github.com/Kink-Development-Group/hyp-runtime/commits/1.0.0-rc2