Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianschuiki committed Sep 5, 2020
1 parent 193d91d commit 01d0d79
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 39 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## 0.11.0 - 2020-09-05
### Added
- Add support for `x**y` with power-of-two `x` or constant `y` (#193)
- Add limited support for `$countones`, `$onehot`, `$onehot0`, `$isunknown`, `$left`, `$right`, `$low`, `$high`, `$increment`, `$size` (#204)
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand All @@ -15,10 +15,10 @@ travis-ci = { repository = "fabianschuiki/moore", branch = "master" }
[workspace]

[dependencies]
moore-common = { path = "src/common", version = "0.11.0-dev" }
moore-derive = { path = "src/derive", version = "0.11.0-dev" }
moore-svlog = { path = "src/svlog", version = "0.11.0-dev" }
moore-vhdl = { path = "src/vhdl", version = "0.11.0-dev" }
moore-common = { path = "src/common", version = "0.11.0" }
moore-derive = { path = "src/derive", version = "0.11.0" }
moore-svlog = { path = "src/svlog", version = "0.11.0" }
moore-vhdl = { path = "src/vhdl", version = "0.11.0" }
clap = "2"
llhd = "0.14.1"
num = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-common"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-derive"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand Down
10 changes: 5 additions & 5 deletions src/svlog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-svlog"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand All @@ -14,10 +14,10 @@ include = ["**.rs", "*.toml"]
path = "lib.rs"

[dependencies]
moore-common = { path = "../common", version = "0.11.0-dev" }
moore-derive = { path = "../derive", version = "0.11.0-dev" }
moore-svlog-syntax = { path = "syntax", version = "0.11.0-dev" }
llhd = "0.14"
moore-common = { path = "../common", version = "0.11.0" }
moore-derive = { path = "../derive", version = "0.11.0" }
moore-svlog-syntax = { path = "syntax", version = "0.11.0" }
llhd = "0.14.1"
log = "0.4"
# salsa = { git = "https://github.com/fabianschuiki/salsa", branch = "database-lifetimes" }
num = "0.2"
Expand Down
6 changes: 3 additions & 3 deletions src/svlog/syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-svlog-syntax"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand All @@ -12,8 +12,8 @@ license = "Apache-2.0 OR MIT"
path = "lib.rs"

[dependencies]
moore-common = { path = "../../common", version = "0.11.0-dev" }
moore-derive = { path = "../../derive", version = "0.11.0-dev" }
moore-common = { path = "../../common", version = "0.11.0" }
moore-derive = { path = "../../derive", version = "0.11.0" }
log = "0.4"
backtrace = "0.3"
once_cell = "1.3"
6 changes: 3 additions & 3 deletions src/vhdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-vhdl"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand All @@ -12,8 +12,8 @@ license = "Apache-2.0 OR MIT"
path = "lib.rs"

[dependencies]
moore-common = { path = "../common", version = "0.11.0-dev" }
moore-vhdl-syntax = { path = "syntax", version = "0.11.0-dev" }
moore-common = { path = "../common", version = "0.11.0" }
moore-vhdl-syntax = { path = "syntax", version = "0.11.0" }
lazy_static = "1.4"
llhd = "0.5"
num = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions src/vhdl/syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moore-vhdl-syntax"
version = "0.11.0-dev"
version = "0.11.0"
authors = ["Fabian Schuiki <fschuiki@iis.ee.ethz.ch>"]
edition = "2018"

Expand All @@ -12,5 +12,5 @@ license = "Apache-2.0 OR MIT"
path = "lib.rs"

[dependencies]
moore-common = { path = "../../common", version = "0.11.0-dev" }
moore-common = { path = "../../common", version = "0.11.0" }
once_cell = "1.3"

0 comments on commit 01d0d79

Please sign in to comment.