Skip to content

Commit

Permalink
version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rachitnigam committed Oct 15, 2023
1 parent 67cf264 commit 57d1977
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Current

## 0.6.1
- Fix checking for large constants (#1743)
- Better static inlining for single cycle `if` (#1734)
- Implement `schedule-compaction` pass to optimize inferred static islands (#1722)
- Add `std_signext` primitive

## 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.
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.

14 changes: 7 additions & 7 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.6.0"
version = "0.6.1"
rust-version = "1.67"

[workspace.dependencies]
Expand All @@ -43,11 +43,11 @@ pest = "2"
pest_derive = "2"
pest_consume = "1"
argh = "0.1"
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" }
calyx-utils = { path = "calyx-utils", version = "0.6.1" }
calyx-ir = { path = "calyx-ir", version = "0.6.1" }
calyx-frontend = { path = "calyx-frontend", version = "0.6.1" }
calyx-opt = { path = "calyx-opt", version = "0.6.1" }
calyx-backend = { path = "calyx-backend", version = "0.6.1" }

[workspace.dependencies.petgraph]
version = "0.6"
Expand Down Expand Up @@ -81,7 +81,7 @@ default = []
serialize = ["calyx-ir/serialize", "serde/rc", "calyx-backend/sexp"]

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

[dependencies]
atty.workspace = true
Expand Down
1 change: 0 additions & 1 deletion calyx-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ repository.workspace = true
homepage.workspace = true
categories.workspace = true
readme.workspace = true
serde_json.workspace = true

[features]
default = []
Expand Down

0 comments on commit 57d1977

Please sign in to comment.