Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

chore: bump versions #114

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ Before releasing:

## [Unreleased]

### Added

### Fixed

### Changed

### Removed

## [0.9.0]

### Added
- New Motor API (**Breaking Change**) (#66)
- Added `MotorControl` enum for controlling motor targets (#66).
Expand Down Expand Up @@ -223,9 +233,10 @@ Before releasing:

### Removed

[unreleased]: https://github.com/pros-rs/pros-rs/compare/v0.8.0...HEAD
[unreleased]: https://github.com/pros-rs/pros-rs/compare/v0.9.0...HEAD
[0.4.0]: https://github.com/pros-rs/pros-rs/releases/tag/v0.4.0
[0.5.0]: https://github.com/pros-rs/pros-rs/compare/v0.4.0...v0.5.0
[0.6.0]: https://github.com/pros-rs/pros-rs/compare/v0.5.0...v0.6.0
[0.7.0]: https://github.com/pros-rs/pros-rs/compare/v0.6.0...v0.7.0
[0.8.0]: https://github.com/pros-rs/pros-rs/compare/v0.7.0...v0.8.0
[0.8.0]: https://github.com/pros-rs/pros-rs/compare/v0.8.0...v0.9.0
4 changes: 2 additions & 2 deletions packages/pros-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-async"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "A simple async executor for pros-rs"
Expand All @@ -23,7 +23,7 @@ authors = [
async-task = { version = "4.5.0", default-features = false }
pros-core = { version = "0.1.0", path = "../pros-core" }
waker-fn = "1.1.1"
pros-sys = { version = "0.7.0", path = "../pros-sys" }
pros-sys = { version = "0.8.0", path = "../pros-sys" }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions packages/pros-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Core functionality for pros-rs"
Expand All @@ -20,7 +20,7 @@ authors = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pros-sys = { version = "0.7.0", path = "../pros-sys" }
pros-sys = { version = "0.8.0", path = "../pros-sys" }
no_std_io = { version = "0.6.0", features = ["alloc"] }
snafu = { version = "0.8.0", default-features = false, features = [
"rust_1_61",
Expand Down
4 changes: 2 additions & 2 deletions packages/pros-devices/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-devices"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "High level device for pros-rs"
Expand All @@ -21,7 +21,7 @@ authors = [

[dependencies]
pros-core = { version = "0.1.0", path = "../pros-core" }
pros-sys = { path = "../pros-sys", version = "0.7.0", features = ["xapi"] }
pros-sys = { path = "../pros-sys", version = "0.8.0", features = ["xapi"] }
snafu = { version = "0.8.0", default-features = false, features = [
"rust_1_61",
"unstable-core-error",
Expand Down
6 changes: 3 additions & 3 deletions packages/pros-panic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-panic"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Panic handler for pros-rs"
Expand All @@ -20,8 +20,8 @@ authors = [

[dependencies]
pros-core = { version = "0.1.0", path = "../pros-core" }
pros-devices = { version = "0.1.0", path = "../pros-devices", optional = true }
pros-sys = { version = "0.7.0", path = "../pros-sys" }
pros-devices = { version = "0.2.0", path = "../pros-devices", optional = true }
pros-sys = { version = "0.8.0", path = "../pros-sys" }

[features]
default = ["display_panics"]
Expand Down
2 changes: 1 addition & 1 deletion packages/pros-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-sync"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "`SyncRobot` trait and macro for pros-rs"
Expand Down
2 changes: 1 addition & 1 deletion packages/pros-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros-sys"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
description = "EFI for the PROS rust bindings"
keywords = ["PROS", "Robotics", "bindings", "vex", "v5"]
Expand Down
12 changes: 6 additions & 6 deletions packages/pros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Rust bindings for PROS"
keywords = ["PROS", "Robotics", "bindings", "vex", "v5"]
Expand All @@ -18,13 +18,13 @@ rust-version = "1.75.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pros-sync = { version = "0.1.0", path = "../pros-sync", optional = true }
pros-async = { version = "0.1.0", path = "../pros-async", optional = true }
pros-devices = { version = "0.1.0", path = "../pros-devices", optional = true }
pros-panic = { version = "0.1.0", path = "../pros-panic", optional = true }
pros-sync = { version = "0.2.0", path = "../pros-sync", optional = true }
pros-async = { version = "0.2.0", path = "../pros-async", optional = true }
pros-devices = { version = "0.2.0", path = "../pros-devices", optional = true }
pros-panic = { version = "0.1.1", path = "../pros-panic", optional = true }
pros-core = { version = "0.1.0", path = "../pros-core", optional = true }
Gavin-Niederman marked this conversation as resolved.
Show resolved Hide resolved
pros-math = { version = "0.1.0", path = "../pros-math", optional = true }
pros-sys = { version = "0.7.0", path = "../pros-sys" }
pros-sys = { version = "0.8.0", path = "../pros-sys" }

[features]
default = ["async", "devices", "panic", "display_panics", "core", "math"]
Expand Down
Loading