Skip to content

Commit 7a8115c

Browse files
committedApr 14, 2021
Minor version bump
1 parent c6cf27b commit 7a8115c

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed
 

‎common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-common"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]

‎device/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ license = "MIT"
77
name = "pico-device"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
1414
path = "src/lib.rs"
1515

1616
[dependencies]
1717
parking_lot = "0.11"
18-
pico-common = {path = "../common", version = "0.2.2"}
19-
pico-driver = {path = "../driver", version = "0.2.2"}
18+
pico-common = {path = "../common", version = "0.3.0"}
19+
pico-driver = {path = "../driver", version = "0.3.0"}
2020
serde = {version = "1.0", features = ["derive", "rc"], optional = true}
2121
tracing = {version = "0.1", features = ["attributes"]}

‎download/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-download"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
@@ -16,8 +16,8 @@ path = "src/lib.rs"
1616
[dependencies]
1717
directories = "3.0"
1818
http_req = "^0.7"
19-
pico-common = {path = "../common", version = "0.2.2"}
20-
pico-driver = {path = "../driver", version = "0.2.2"}
19+
pico-common = {path = "../common", version = "0.3.0"}
20+
pico-driver = {path = "../driver", version = "0.3.0"}
2121
ring = "0.16"
2222
thiserror = "^1.0"
2323

‎driver/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-driver"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
@@ -19,8 +19,8 @@ lazy_static = "1.4"
1919
libffi = "1.0"
2020
libloading = "0.7"
2121
parking_lot = "0.11"
22-
pico-common = {path = "../common", version = "0.2.2"}
23-
pico-sys-dynamic = {path = "../sys", version = "0.2.2"}
22+
pico-common = {path = "../common", version = "0.3.0"}
23+
pico-sys-dynamic = {path = "../sys", version = "0.3.0"}
2424
thiserror = "^1.0"
2525
tracing = {version = "0.1", features = ["attributes"]}
2626
version-compare = "0.0.11"

‎enumeration/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ license = "MIT"
77
name = "pico-enumeration"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
1414
path = "src/lib.rs"
1515

1616
[dependencies]
1717
parking_lot = "0.11"
18-
pico-common = {path = "../common", version = "0.2.2"}
19-
pico-device = {path = "../device", version = "0.2.2"}
20-
pico-driver = {path = "../driver", version = "0.2.2"}
18+
pico-common = {path = "../common", version = "0.3.0"}
19+
pico-device = {path = "../device", version = "0.3.0"}
20+
pico-driver = {path = "../driver", version = "0.3.0"}
2121
rayon = "1.3"
2222
serde = {version = "1.0", features = ["derive"], optional = true}
2323
thiserror = "1.0"

‎sdk/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-sdk"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
@@ -17,13 +17,13 @@ path = "src/lib.rs"
1717
serde = ["pico-common/serde", "pico-device/serde", "pico-enumeration/serde", "pico-streaming/serde"]
1818

1919
[dependencies]
20-
pico-common = {path = "../common", version = "0.2.2"}
21-
pico-device = {path = "../device", version = "0.2.2"}
22-
pico-download = {path = "../download", version = "0.2.2"}
23-
pico-driver = {path = "../driver", version = "0.2.2"}
24-
pico-enumeration = {path = "../enumeration", version = "0.2.2"}
25-
pico-streaming = {path = "../streaming", version = "0.2.2"}
26-
pico-sys-dynamic = {path = "../sys", version = "0.2.2"}
20+
pico-common = {path = "../common", version = "0.3.0"}
21+
pico-device = {path = "../device", version = "0.3.0"}
22+
pico-download = {path = "../download", version = "0.3.0"}
23+
pico-driver = {path = "../driver", version = "0.3.0"}
24+
pico-enumeration = {path = "../enumeration", version = "0.3.0"}
25+
pico-streaming = {path = "../streaming", version = "0.3.0"}
26+
pico-sys-dynamic = {path = "../sys", version = "0.3.0"}
2727

2828
[dev-dependencies]
2929
anyhow = "1.0"

‎streaming/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-streaming"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]
@@ -16,9 +16,9 @@ path = "src/lib.rs"
1616
[dependencies]
1717
crossbeam = "0.8"
1818
parking_lot = {version = "0.11", features = ["serde"]}
19-
pico-common = {path = "../common", version = "0.2.2"}
20-
pico-device = {path = "../device", version = "0.2.2"}
21-
pico-driver = {path = "../driver", version = "0.2.2"}
19+
pico-common = {path = "../common", version = "0.3.0"}
20+
pico-device = {path = "../device", version = "0.3.0"}
21+
pico-driver = {path = "../driver", version = "0.3.0"}
2222
serde = {version = "1.0", features = ["derive", "rc"], optional = true}
2323
tracing = {version = "0.1", features = ["attributes"]}
2424

‎sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "pico-sys-dynamic"
88
readme = "README.md"
99
repository = "https://github.com/meatysolutions/pico-sdk"
10-
version = "0.2.2"
10+
version = "0.3.0"
1111

1212
[lib]
1313
crate-type = ["lib"]

0 commit comments

Comments
 (0)