From 38ea2b52885cdacbdf91bd71210d2e1b2bb1c07a Mon Sep 17 00:00:00 2001 From: Rachit Nigam Date: Wed, 23 Aug 2023 07:05:18 +0530 Subject: [PATCH] version 0.5.1 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 202e0626d4..3790c6c810 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.5.1 +- Change the `calyx` build script to use the `CALYX_PRIMITIVES_DIR` env variable to install primitive libraries. If unset, use `$HOME/.calyx`. + ## 0.5.0 - Don't require `@clk` and `@reset` ports in `comb` components - `inline` pass supports inlining `ref` cells diff --git a/Cargo.lock b/Cargo.lock index ddb4982bb6..f5aa4e3618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,7 +184,7 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "calyx" -version = "0.5.0" +version = "0.5.1" dependencies = [ "argh", "atty", diff --git a/Cargo.toml b/Cargo.toml index 7f6eafdbbd..d7f1905bfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ features = ["matrix_graph"] [package] name = "calyx" default-run = "calyx" -version.workspace = true +version = "0.5.1" edition.workspace = true description.workspace = true authors.workspace = true