From 187852824ee61364617e24c30b98fdcc5d784164 Mon Sep 17 00:00:00 2001 From: Matthew Keil Date: Wed, 15 Jan 2025 14:58:41 +0700 Subject: [PATCH] chore(master): release 1.0.0 --- .release-please-manifest.json | 2 +- packages/as-sha256/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/as-sha256/package.json | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ffdfb637..39ce0aba 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "packages/as-sha256": "0.5.0", + "packages/as-sha256": "1.0.0", "packages/persistent-merkle-tree": "0.8.0", "packages/persistent-ts": "0.19.1", "packages/ssz": "0.18.0" diff --git a/packages/as-sha256/CHANGELOG.md b/packages/as-sha256/CHANGELOG.md index 8ea4467a..b3acdb23 100644 --- a/packages/as-sha256/CHANGELOG.md +++ b/packages/as-sha256/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0](https://github.com/chainsafe/ssz/compare/v0.8.17...v1.0.0) (2025-01-15) + + +### ⚠ BREAKING CHANGES + +* implement hashInto() api for as-sha256 ([#382](https://github.com/chainsafe/ssz/issues/382)) + +### Features + +* add swappable hasher, default to noble-hashes ([#314](https://github.com/chainsafe/ssz/issues/314)) ([4b44614](https://github.com/chainsafe/ssz/commit/4b44614003619b2c5477363a3c85287e2f2987bd)) +* implement hashInto() api for as-sha256 ([#382](https://github.com/chainsafe/ssz/issues/382)) ([ccadf43](https://github.com/chainsafe/ssz/commit/ccadf431cea6164822e72771304192b2728d7bb2)) +* non simd sha256 for incompatible systems ([#427](https://github.com/chainsafe/ssz/issues/427)) ([9729005](https://github.com/chainsafe/ssz/commit/9729005ab0fd401c30e999b20133c4bb6373ded6)) +* SIMD implementation for as-sha256 ([#367](https://github.com/chainsafe/ssz/issues/367)) ([ec123ec](https://github.com/chainsafe/ssz/commit/ec123ec3cfcc37ff82635da7a57ad9c74cc9accb)) +* use allocUnsafe to allocate hash digests ([#391](https://github.com/chainsafe/ssz/issues/391)) ([8ea1bb4](https://github.com/chainsafe/ssz/commit/8ea1bb4809592691e568238520cb3c2aa9257c25)) + + +### Bug Fixes + +* add homepage/repo etc to as-sha256 package.json ([#401](https://github.com/chainsafe/ssz/issues/401)) ([1dc50ef](https://github.com/chainsafe/ssz/commit/1dc50ef2985a03c315bbce44165cd271a4a6e2df)) +* migrate to the latest assemblyscript ([#348](https://github.com/chainsafe/ssz/issues/348)) ([9cf6991](https://github.com/chainsafe/ssz/commit/9cf6991e7ece4e4002668f601ecb43bb8bd53f4e)) +* Use file path imports ([#318](https://github.com/chainsafe/ssz/issues/318)) ([f459e92](https://github.com/chainsafe/ssz/commit/f459e92fbafc5d9388bfa630291855ec32a09566)) + ## [0.5.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v0.5.0...as-sha256-v0.5.0) (2024-10-15) diff --git a/packages/as-sha256/package.json b/packages/as-sha256/package.json index 484e7fba..a76052f4 100644 --- a/packages/as-sha256/package.json +++ b/packages/as-sha256/package.json @@ -1,6 +1,6 @@ { "name": "@chainsafe/as-sha256", - "version": "0.5.0", + "version": "1.0.0", "description": "An AssemblyScript implementation of SHA256", "author": "ChainSafe Systems", "license": "Apache-2.0",