Skip to content

Commit

Permalink
version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rachitnigam committed Aug 31, 2023
1 parent 40f54c8 commit 3958c2c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Unreleased
## 0.6.0
- BREAKING: Deprecate `Cell::find_with_attr` in favor of `Cell::find_with_unique_attr`. The former is error-prone because pass logic might implicitly assume that there is only one port with a particular attribute.
- BREAKING: Redesign the `ir::Rewriter` interface to take all the rewrite maps when constructing the `ir::Rewriter` struct.
- Merge the logic of `compile-ref` pass into `compile-invoke` so that `ref` cells can be invoked.
- The `guard!` macro supports parsing complex guard expressions that use logical connectives and comparison operators.
- The `calyx` library no longer exposes any methods and should not be depended upon. Instead, the new `calyx-backend` crate provides the code needed to emit Verilog from Calyx.

## 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`.
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ description = "Compiler Infrastructure for Hardware Accelerator Generation"
categories = ["compilers"]
homepage = "https://calyxir.org"
edition = "2021"
version = "0.5.0"
version = "0.6.0"
rust-version = "1.67"

[workspace.dependencies]
Expand All @@ -42,11 +42,11 @@ pest = "2"
pest_derive = "2"
pest_consume = "1"
argh = "0.1"
calyx-utils = { path = "calyx-utils", version = "0.5.0" }
calyx-ir = { path = "calyx-ir", version = "0.5.0" }
calyx-frontend = { path = "calyx-frontend", version = "0.5.0" }
calyx-opt = { path = "calyx-opt", version = "0.5.0" }
calyx-backend = { path = "calyx-backend", version = "0.5.0" }
calyx-utils = { path = "calyx-utils", version = "0.6.0" }
calyx-ir = { path = "calyx-ir", version = "0.6.0" }
calyx-frontend = { path = "calyx-frontend", version = "0.6.0" }
calyx-opt = { path = "calyx-opt", version = "0.6.0" }
calyx-backend = { path = "calyx-backend", version = "0.6.0" }

[workspace.dependencies.petgraph]
version = "0.6"
Expand All @@ -58,7 +58,7 @@ features = ["matrix_graph"]
[package]
name = "calyx"
default-run = "calyx"
version = "0.5.1"
version.workspace = true
edition.workspace = true
description.workspace = true
authors.workspace = true
Expand All @@ -80,7 +80,7 @@ default = []
serialize = ["calyx-ir/serialize", "serde/rc", "calyx-backend/sexp"]

[build-dependencies]
calyx-stdlib = { path = "calyx-stdlib", version = "0.5.0" }
calyx-stdlib = { path = "calyx-stdlib", version = "0.6.0" }

[dependencies]
atty.workspace = true
Expand Down

0 comments on commit 3958c2c

Please sign in to comment.