From d7de0cc36d149be670b04b642a186da4d1d532f9 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Mon, 14 Oct 2024 13:52:24 -0700 Subject: [PATCH] chore(version): 0.7.0 --- CHANGELOG.md | 10 ++++++++++ MODULE.bazel | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458b3ab6..f0e9a948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## 0.7.0 - 2024-10-14 +#### Bug Fixes +- use correct macro in async header (#265) - (dbce850) - Ezekiel Warren +#### Features +- remove use of variadic arguments in api due to wasm limitation (#264) - (b034c85) - Ezekiel Warren +- API for streaming components (#262) - (bf7b0d9) - Austin Kelway +- allow export load at runtime (#263) - (e811be1) - Ezekiel Warren + +- - - + ## 0.6.9 - 2024-08-26 #### Features - reserve error async codes for custom implementations (#260) - (83c5955) - Ezekiel Warren diff --git a/MODULE.bazel b/MODULE.bazel index e8d36693..20c75a7f 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,7 +1,7 @@ module( name = "ecsact_runtime", - version = "0.6.9", - compatibility_level = 6, + version = "0.7.0", + compatibility_level = 7, ) bazel_dep(name = "rules_cc", version = "0.0.9")