From e3bb53ae9a917c54145cd79380c202a3ddf4fa4a Mon Sep 17 00:00:00 2001 From: "hash-release[bot]" <313494501+hash-release[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 08:22:23 +0000 Subject: [PATCH] Version Packages --- .changeset/ds-helpers-styled-system-payload.md | 5 ----- .changeset/stochastic-firing-statistics.md | 5 ----- libs/@hashintel/ds-components/CHANGELOG.md | 7 +++++++ libs/@hashintel/ds-components/package.json | 2 +- libs/@hashintel/ds-helpers/CHANGELOG.md | 6 ++++++ libs/@hashintel/ds-helpers/package.json | 2 +- libs/@hashintel/petrinaut-core/CHANGELOG.md | 6 ++++++ libs/@hashintel/petrinaut-core/package.json | 2 +- libs/@hashintel/petrinaut/CHANGELOG.md | 9 +++++++++ libs/@hashintel/petrinaut/package.json | 2 +- 10 files changed, 32 insertions(+), 14 deletions(-) delete mode 100644 .changeset/ds-helpers-styled-system-payload.md delete mode 100644 .changeset/stochastic-firing-statistics.md diff --git a/.changeset/ds-helpers-styled-system-payload.md b/.changeset/ds-helpers-styled-system-payload.md deleted file mode 100644 index 61df65d5a3d..00000000000 --- a/.changeset/ds-helpers-styled-system-payload.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hashintel/ds-helpers": patch ---- - -Ship the generated `styled-system` files in the package tarball. diff --git a/.changeset/stochastic-firing-statistics.md b/.changeset/stochastic-firing-statistics.md deleted file mode 100644 index 94e276ed006..00000000000 --- a/.changeset/stochastic-firing-statistics.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hashintel/petrinaut-core": patch ---- - -Fix stochastic transition firing statistics: fire with the memoryless per-frame probability `1 - e^(-rate * dt)`, advance the RNG state on every evaluation instead of discarding non-firing draws, and compute the seeded LCG with exact integer arithmetic. Firing counts now match Poisson expectations. Identical seeds produce different sequences than earlier releases. diff --git a/libs/@hashintel/ds-components/CHANGELOG.md b/libs/@hashintel/ds-components/CHANGELOG.md index 7e74906af6c..235c0c2461b 100644 --- a/libs/@hashintel/ds-components/CHANGELOG.md +++ b/libs/@hashintel/ds-components/CHANGELOG.md @@ -1,5 +1,12 @@ # @hashintel/ds-components +## 0.3.1 + +### Patch Changes + +- Updated dependencies: + - @hashintel/ds-helpers@0.2.2 + ## 0.3.0 ### Minor Changes diff --git a/libs/@hashintel/ds-components/package.json b/libs/@hashintel/ds-components/package.json index ee596bf99f3..58e90b026d4 100644 --- a/libs/@hashintel/ds-components/package.json +++ b/libs/@hashintel/ds-components/package.json @@ -1,6 +1,6 @@ { "name": "@hashintel/ds-components", - "version": "0.3.0", + "version": "0.3.1", "description": "HASH Component Library built with React, Ark UI, and PandaCSS", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/libs/@hashintel/ds-helpers/CHANGELOG.md b/libs/@hashintel/ds-helpers/CHANGELOG.md index a39a1ce2aff..93949852ab7 100644 --- a/libs/@hashintel/ds-helpers/CHANGELOG.md +++ b/libs/@hashintel/ds-helpers/CHANGELOG.md @@ -1,5 +1,11 @@ # @hashintel/ds-helpers +## 0.2.2 + +### Patch Changes + +- Ship the generated `styled-system` files in the package tarball. ([@CiaranMn](https://github.com/CiaranMn), [#9328](https://github.com/hashintel/hash/pull/9328)) + ## 0.2.1 ### Patch Changes diff --git a/libs/@hashintel/ds-helpers/package.json b/libs/@hashintel/ds-helpers/package.json index 028b26d3ef0..ffb189afbf8 100644 --- a/libs/@hashintel/ds-helpers/package.json +++ b/libs/@hashintel/ds-helpers/package.json @@ -1,6 +1,6 @@ { "name": "@hashintel/ds-helpers", - "version": "0.2.1", + "version": "0.2.2", "description": "HASH PandaCSS Styled System", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/libs/@hashintel/petrinaut-core/CHANGELOG.md b/libs/@hashintel/petrinaut-core/CHANGELOG.md index 0c5532dd44b..e72fdff3823 100644 --- a/libs/@hashintel/petrinaut-core/CHANGELOG.md +++ b/libs/@hashintel/petrinaut-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @hashintel/petrinaut-core +## 0.0.4 + +### Patch Changes + +- Fix stochastic transition firing statistics: fire with the memoryless per-frame probability `1 - e^(-rate * dt)`, advance the RNG state on every evaluation instead of discarding non-firing draws, and compute the seeded LCG with exact integer arithmetic. Firing counts now match Poisson expectations. Identical seeds produce different sequences than earlier releases. ([@kube](https://github.com/kube), [#9329](https://github.com/hashintel/hash/pull/9329)) + ## 0.0.3 ### Patch Changes diff --git a/libs/@hashintel/petrinaut-core/package.json b/libs/@hashintel/petrinaut-core/package.json index cbfeb607cba..ee57665156d 100644 --- a/libs/@hashintel/petrinaut-core/package.json +++ b/libs/@hashintel/petrinaut-core/package.json @@ -1,6 +1,6 @@ { "name": "@hashintel/petrinaut-core", - "version": "0.0.3", + "version": "0.0.4", "description": "Headless Petrinaut core APIs", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/libs/@hashintel/petrinaut/CHANGELOG.md b/libs/@hashintel/petrinaut/CHANGELOG.md index 080604d325a..e1a311d94c1 100644 --- a/libs/@hashintel/petrinaut/CHANGELOG.md +++ b/libs/@hashintel/petrinaut/CHANGELOG.md @@ -1,5 +1,14 @@ # @hashintel/petrinaut +## 0.0.19 + +### Patch Changes + +- Updated dependencies: + - @hashintel/ds-helpers@0.2.2 + - @hashintel/petrinaut-core@0.0.4 + - @hashintel/ds-components@0.3.1 + ## 0.0.18 ### Patch Changes diff --git a/libs/@hashintel/petrinaut/package.json b/libs/@hashintel/petrinaut/package.json index dc4482798b7..416a670e60b 100644 --- a/libs/@hashintel/petrinaut/package.json +++ b/libs/@hashintel/petrinaut/package.json @@ -1,6 +1,6 @@ { "name": "@hashintel/petrinaut", - "version": "0.0.18", + "version": "0.0.19", "description": "A visual editor for Petri nets", "license": "(MIT OR Apache-2.0)", "repository": {