From ef6e337c5ca5d3f99f701fe3accd476fb524d0ef Mon Sep 17 00:00:00 2001 From: hugrbot Date: Mon, 19 Aug 2024 16:01:54 +0100 Subject: [PATCH] chore: release v0.2.1 (#77) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `hugr-llvm`: 0.2.0 -> 0.2.1
Changelog

## [0.2.1](https://github.com/CQCL/hugr-llvm/compare/v0.2.0...v0.2.1) - 2024-08-19 ### Documentation - Remove fixed crate version in usage instructions ([#68](https://github.com/CQCL/hugr-llvm/pull/68)) ### New Features - Add lowering for LoadFunction ([#65](https://github.com/CQCL/hugr-llvm/pull/65)) - Emission for CallIndirect nodes ([#73](https://github.com/CQCL/hugr-llvm/pull/73))

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ec5e24..73eed58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/CQCL/hugr-llvm/compare/v0.2.0...v0.2.1) - 2024-08-19 + +### Documentation +- Remove fixed crate version in usage instructions ([#68](https://github.com/CQCL/hugr-llvm/pull/68)) + +### New Features +- Add lowering for LoadFunction ([#65](https://github.com/CQCL/hugr-llvm/pull/65)) +- Emission for CallIndirect nodes ([#73](https://github.com/CQCL/hugr-llvm/pull/73)) + ## [0.2.0](https://github.com/CQCL/hugr-llvm/compare/v0.1.0...v0.2.0) - 2024-07-31 ### New Features diff --git a/Cargo.lock b/Cargo.lock index f3313e7..473a24d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "hugr-llvm" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "delegate", diff --git a/Cargo.toml b/Cargo.toml index 6b93c99..29b7aa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-llvm" -version = "0.2.0" +version = "0.2.1" description = "A general and extensible crate for lowering HUGRs into LLVM IR" edition = "2021"