Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/plot-line-explicit-x.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/uniform-inputs-p1.md

This file was deleted.

6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ exclude = ["packages/legacy", "crates/noise-core/fuzz", "tools/rng-cert", "tools

[workspace.package]
edition = "2021"
version = "0.7.0"
version = "0.8.0"
authors = ["Manu Mtz.-Almeida <manu.valladolid@gmail.com>"]
license = "MIT"
repository = "https://github.com/manucorporat/noise-lang"

# Dependencies shared by 2+ member crates, hoisted so versions can't drift. Feature choices
# (e.g. serde_json's `preserve_order`) stay per-crate.
[workspace.dependencies]
noise-core = { path = "crates/noise-core", version = "0.7.0" }
noise-core = { path = "crates/noise-core", version = "0.8.0" }
serde_json = "1"
wasm-bindgen = "0.2"

Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @noiselang/core

## 0.8.0

### Minor Changes

- 7744ce7: `plot::line(xs, ys)` — the two-argument form plots a vector of values (numbers, estimates, or random variables, banded by ±1 sd like the one-argument form) against an explicit deterministic numeric x-axis, with the axis named after its source array. Histogram/introspection draw collection now runs on the parallel sampling driver (bit-identical stream, multicore wall-clock).
- 7744ce7: Slider values are now true runtime uniforms in every backend (PLAN-UNIFORM-INPUTS P1): the WGSL and WASM emitters lower `input::` cones instead of declining them, and the value rides the dispatch (a GPU params block / a host-written memory region) rather than the compiled artifact. Dragging a slider re-dispatches cached pipelines and cached kernel instances with zero recompiles, and slider-heavy documents GPU-accelerate — `turboquant.noise` drops from ~14 s to under 0.1 s on the GPU CLI.

## 0.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@noiselang/core",
"version": "0.7.0",
"version": "0.8.0",
"description": "The Noise probabilistic language engine, compiled to WebAssembly. Parse and run .noise programs (with variable introspection) from any JS/TS project — the .wasm ships in the package and bundles into your build.",
"license": "MIT",
"author": "Manu Mtz.-Almeida <manu.valladolid@gmail.com>",
Expand Down
Loading