bump version to 0.2.0
This commit is contained in:
parent
d845d6c067
commit
6548c6ec5d
|
@ -278,7 +278,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"num-traits",
|
||||
"serde",
|
||||
|
@ -286,7 +286,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl-flow-graph"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"dol",
|
||||
|
@ -298,7 +298,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl-fuzz"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"num_cpus",
|
||||
"ppc750cl",
|
||||
|
@ -306,7 +306,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl-genisa"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"itertools",
|
||||
"proc-macro2",
|
||||
|
@ -318,7 +318,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl-py"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"ppc750cl",
|
||||
"pyo3",
|
||||
|
@ -326,7 +326,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ppc750cl-rand"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"ppc750cl",
|
||||
"rand_core",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl-py"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
@ -17,4 +17,4 @@ default = ["extension-module"]
|
|||
|
||||
[dependencies]
|
||||
pyo3 = { version = "0.16", features = ["multiple-pymethods"] }
|
||||
ppc750cl = { version = "0.1.1", path = "../disasm" }
|
||||
ppc750cl = { version = "0.2.0", path = "../disasm" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl-flow-graph"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["riidefi <riidefi@rii.dev>", "Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
@ -13,4 +13,4 @@ dol = { version = "0.1.0", path = "../dol" }
|
|||
itertools = "0.10"
|
||||
parse_int = "0.6"
|
||||
petgraph = "0.6"
|
||||
ppc750cl = { version = "0.1.1", path = "../disasm" }
|
||||
ppc750cl = { version = "0.2.0", path = "../disasm" }
|
||||
|
|
|
@ -11,7 +11,7 @@ use dol::Dol;
|
|||
|
||||
fn main() {
|
||||
let matches = clap::Command::new("ppc750cl-flow-graph")
|
||||
.version("0.1.1")
|
||||
.version("0.2.0")
|
||||
.about("Control flow graph analysis for PowerPC 750CL")
|
||||
.arg(
|
||||
clap::Arg::new("START")
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl-fuzz"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
@ -9,4 +9,4 @@ repository = "https://github.com/terorie/ppc750cl"
|
|||
|
||||
[dependencies]
|
||||
num_cpus = "1.13"
|
||||
ppc750cl = { path = "../disasm", version = "0.1.1" }
|
||||
ppc750cl = { path = "../disasm", version = "0.2.0" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl-genisa"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ppc750cl-rand"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
@ -8,6 +8,6 @@ description = "Generate random PowerPC 750CL instructions"
|
|||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[dependencies]
|
||||
ppc750cl = { path = "../disasm", version = "0.1.1" }
|
||||
ppc750cl = { path = "../disasm", version = "0.2.0" }
|
||||
rand_core = "0.6"
|
||||
sfmt = "0.7"
|
||||
|
|
Loading…
Reference in New Issue