Skip to content

Commit

Permalink
bump versions to 20.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jan 1, 2024
1 parent 464f5cc commit a7fbfc6
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion autd3-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-derive"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion autd3-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-driver"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand Down
6 changes: 3 additions & 3 deletions autd3-firmware-emulator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-firmware-emulator"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -11,11 +11,11 @@ readme = "README.md"
keywords = ["autd"]

[dependencies]
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
chrono = "0.4.31"
num-integer = "0.1.45"
thiserror = "1.0.40"

[dev-dependencies]
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
rand = "0.8.5"
6 changes: 3 additions & 3 deletions autd3-gain-holo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-gain-holo"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -12,8 +12,8 @@ keywords = ["autd"]

[dependencies]
assert_approx_eq = { version = "1.1.0", optional = true }
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
nalgebra = { version = "0.32.3", default-features = false, features = ["std"] }
rand = "0.8.5"
thiserror = "1.0.31"
Expand Down
8 changes: 4 additions & 4 deletions autd3-link-simulator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-link-simulator"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -11,9 +11,9 @@ readme = "README.md"
keywords = ["autd"]

[dependencies]
autd3-protobuf = { path = "../autd3-protobuf", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-protobuf = { path = "../autd3-protobuf", version = "20.0.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
thiserror = "1.0.30"
tonic = "0.10.0"
tokio = { version = "1.34.0", features = ["rt-multi-thread"], optional = true }
Expand Down
8 changes: 4 additions & 4 deletions autd3-link-soem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-link-soem"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -15,9 +15,9 @@ cc = { version = "1.0.73", features = ["parallel"], optional = true }
glob = { version = "0.3.0", optional = true }

[dependencies]
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-protobuf = { path = "../autd3-protobuf", version = "19.2.0", optional = true }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
autd3-protobuf = { path = "../autd3-protobuf", version = "20.0.0", optional = true }
crossbeam-channel = { version = "0.5.4", optional = true }
thiserror = { version = "1.0.30", optional = true }
time = { version = "0.3.23", default-features = false, features = ["std"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions autd3-link-twincat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-link-twincat"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -11,8 +11,8 @@ readme = "README.md"
keywords = ["autd"]

[dependencies]
autd3-driver = { path = "../autd3-driver", version = "19.2.0", features = ["sync"] }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0", features = ["sync"] }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
itertools = { version = "0.12.0", optional = true }
libloading = { version = "0.8.0", optional = true }
thiserror = "1.0.31"
Expand Down
6 changes: 3 additions & 3 deletions autd3-modulation-audio-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-modulation-audio-file"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -12,8 +12,8 @@ keywords = ["autd"]

[dependencies]
hound = "3.5.0"
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
wav_io = "0.1.8"
thiserror = "1.0.40"

Expand Down
4 changes: 2 additions & 2 deletions autd3-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3-protobuf"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -14,7 +14,7 @@ keywords = ["autd"]
h2 = "0.4.0"
prost = { version = "0.12.0" }
tonic = { version = "0.10.0", default-features = false, features = ["prost", "codegen", "transport"] }
autd3-driver = { path = "../autd3-driver", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0" }
thiserror = "1.0.40"

[build-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions autd3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autd3"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"

Expand All @@ -11,9 +11,9 @@ readme = "README.md"
keywords = ["autd"]

[dependencies]
autd3-driver = { path = "../autd3-driver", version = "19.2.0", features = ["sync"] }
autd3-derive = { path = "../autd3-derive", version = "19.2.0" }
autd3-firmware-emulator = { path = "../autd3-firmware-emulator", version = "19.2.0" }
autd3-driver = { path = "../autd3-driver", version = "20.0.0", features = ["sync"] }
autd3-derive = { path = "../autd3-derive", version = "20.0.0" }
autd3-firmware-emulator = { path = "../autd3-firmware-emulator", version = "20.0.0" }
num = "0.4.0"
thiserror = "1.0.31"
bitvec = "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "19.2.0"
version = "20.0.0"
authors = ["shun suzuki <suzuki@hapis.k.u-tokyo.ac.jp>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit a7fbfc6

Please sign in to comment.