From e136aea58c9f41c9ba18a6c2a1e23c0d8ac051db Mon Sep 17 00:00:00 2001 From: MaxXSoft Date: Thu, 12 Jan 2023 14:05:09 +0800 Subject: [PATCH] (Cargo, CHANGELOG) updated version information --- CHANGELOG.md | 2 +- Cargo.toml | 6 +++--- crates/libkoopa/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2891bfb..407aab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to the Koopa will be documented in this file. -## Unreleased +## 0.0.6 - 2023-01-12 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 414897d..ad8fca8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "koopa" -version = "0.0.5" +version = "0.0.6" authors = ["MaxXing "] edition = "2021" description = "Library for generating/parsing/optimizing Koopa IR." @@ -9,14 +9,14 @@ repository = "https://github.com/pku-minic/koopa" documentation = "https://docs.rs/koopa" license = "GPL-3.0" keywords = ["compiler", "ir"] -exclude = ["/.github", "/crates", "/examples"] +exclude = ["/.github", "/crates"] [features] # disables the front-end logger, returns error messages as strings no-front-logger = [] [dependencies] -key-node-list = "0.0.4" +key-node-list = "0.0.5" colored = "2" [dev-dependencies] diff --git a/crates/libkoopa/Cargo.toml b/crates/libkoopa/Cargo.toml index f39e476..2adcedf 100644 --- a/crates/libkoopa/Cargo.toml +++ b/crates/libkoopa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libkoopa" -version = "0.0.5" +version = "0.0.6" authors = ["MaxXing "] edition = "2021" description = "C library of the Koopa IR framework."