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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ For the initial 0.1.0 release notes, see `.github/CHANGELOG.md`.

## [Unreleased]

## [0.2.0] - 2026-07-13

The entries below summarize a full-crate audit remediation (170 findings,
tracked as `FG-01` .. `FG-64` in the project's audit record) organized by
area. Each bullet range names the finding IDs addressed in that area; a later
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fugue-ppl"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
# Finding FG-51: the README previously claimed "1.70+" with nothing pinning or
# verifying it. Verified empirically against real toolchains (not just
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Fugue is 0.1.x: pre-1.0, actively developed, with no SemVer stability guarantee

```toml
[dependencies]
fugue-ppl = "0.1.0"
fugue-ppl = "0.2.0"
```

### Quickstart
Expand Down Expand Up @@ -133,12 +133,12 @@ Licensed under the [MIT License](LICENSE).
If you use Fugue in your research, please cite:

```bibtex
@software{fugue2025,
@software{fugue2026,
title = {Fugue: Monadic Probabilistic Programming for Rust},
author = {Alexander Nodeland},
url = {https://github.com/alexnodeland/fugue},
version = {0.1.0},
year = {2025}
version = {0.2.0},
year = {2026}
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Add Fugue to your `Cargo.toml`:

```toml
[dependencies]
fugue-ppl = "0.1.0"
fugue-ppl = "0.2.0"
rand = "0.8" # For random number generation
```

Expand All @@ -44,7 +44,7 @@ Add Fugue to your existing `Cargo.toml`:

```toml
[dependencies]
fugue-ppl = "0.1.0"
fugue-ppl = "0.2.0"
rand = "0.8"
```

Expand Down
Loading