From f0ce26a0c1cbbb9553b7646be9e31c396876d0c2 Mon Sep 17 00:00:00 2001
From: hugrbot
Date: Wed, 31 Jul 2024 10:39:43 +0100
Subject: [PATCH] chore: release v0.2.0 (#58)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## 🤖 New release
* `hugr-llvm`: 0.1.0 -> 0.2.0
Changelog
## [0.2.0](https://github.com/CQCL/hugr-llvm/compare/v0.1.0...v0.2.0) -
2024-07-31
### New Features
- make EmitFuncContext::iw_context pub
([#55](https://github.com/CQCL/hugr-llvm/pull/55))
### Refactor
- use HugrFuncType/HugrType/HugrSumType
([#56](https://github.com/CQCL/hugr-llvm/pull/56))
- remove unneeded `HugrView` constraints
([#59](https://github.com/CQCL/hugr-llvm/pull/59))
- [**breaking**] add `LLVMSumValue`
([#63](https://github.com/CQCL/hugr-llvm/pull/63))
### Testing
- Add test for LoadFunction Op
([#60](https://github.com/CQCL/hugr-llvm/pull/60))
---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
---------
Co-authored-by: Douglas Wilson
---
CHANGELOG.md | 13 +++++++++++++
Cargo.lock | 2 +-
Cargo.toml | 2 +-
3 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 00dc57f..4ec5e24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.2.0](https://github.com/CQCL/hugr-llvm/compare/v0.1.0...v0.2.0) - 2024-07-31
+
+### New Features
+- make EmitFuncContext::iw_context pub ([#55](https://github.com/CQCL/hugr-llvm/pull/55))
+
+### Refactor
+- use HugrFuncType/HugrType/HugrSumType ([#56](https://github.com/CQCL/hugr-llvm/pull/56))
+- remove unneeded `HugrView` constraints ([#59](https://github.com/CQCL/hugr-llvm/pull/59))
+- [**breaking**] add `LLVMSumValue` ([#63](https://github.com/CQCL/hugr-llvm/pull/63))
+
+### Testing
+- Add test for LoadFunction Op ([#60](https://github.com/CQCL/hugr-llvm/pull/60))
+
## [0.1.0](https://github.com/CQCL/hugr-llvm/releases/tag/v0.1.0) - 2024-07-10
### Bug Fixes
diff --git a/Cargo.lock b/Cargo.lock
index 63c85fc..ea3e75e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -338,7 +338,7 @@ dependencies = [
[[package]]
name = "hugr-llvm"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"anyhow",
"delegate",
diff --git a/Cargo.toml b/Cargo.toml
index f090180..c4e8c1d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hugr-llvm"
-version = "0.1.0"
+version = "0.2.0"
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
edition = "2021"