Skip to content

Releases: Kink-Development-Group/hyp-runtime

v1.2.0

22 Jan 08:14
62f54b9

Choose a tag to compare

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 | bash

The 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 version

Windows

# Extract the zip
# Add to PATH or run directly
.\hypnoscript-windows-x64.exe version

Debian/Ubuntu

sudo dpkg -i hypnoscript_*.deb
hypnoscript version

Checksums

SHA256 checksums are provided for all binaries. Verify with:

sha256sum -c hypnoscript-*.sha256

Version Release 1.0.0

15 Nov 12:59

Choose a tag to compare

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 | bash

Das 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 version

Windows

# Extract the zip
# Add to PATH or run directly
.\hypnoscript-windows-x64.exe version

Debian/Ubuntu

sudo dpkg -i hypnoscript_*.deb
hypnoscript-cli version

Checksums

SHA256 checksums are provided for all binaries. Verify with:

sha256sum -c hypnoscript-*.sha256

Pre Release 1.0.0-rc2

14 Nov 00:37
2d66f18

Choose a tag to compare

Pre Release 1.0.0-rc2 Pre-release
Pre-release

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