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

Commit

Permalink
Merge pull request #99 from pros-rs/bump
Browse files Browse the repository at this point in the history
chore: bump version 0.8.0
  • Loading branch information
Gavin-Niederman authored Mar 2, 2024
2 parents 61b560b + 923af4a commit c25d1a2
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
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.8.0]

### Added
- Added feedforward motor controllers (#80)
- Lightly document all APIs with missing documentation. (#70)
Expand Down Expand Up @@ -178,8 +188,9 @@ Before releasing:

### Removed

[unreleased]: https://github.com/pros-rs/pros-rs/compare/v0.7.0...HEAD
[unreleased]: https://github.com/pros-rs/pros-rs/compare/v0.8.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
2 changes: 1 addition & 1 deletion packages/pros-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
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.6.0", path = "../pros-sys" }
pros-sys = { version = "0.7.0", path = "../pros-sys" }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion packages/pros-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pros-sys = { version = "0.6.0", path = "../pros-sys" }
pros-sys = { version = "0.7.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
2 changes: 1 addition & 1 deletion packages/pros-devices/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
pros-core = { version = "0.1.0", path = "../pros-core" }
pros-sys = { path = "../pros-sys", version = "0.6.0", features = ["xapi"] }
pros-sys = { path = "../pros-sys", version = "0.7.0", features = ["xapi"] }
snafu = { version = "0.8.0", default-features = false, features = [
"rust_1_61",
"unstable-core-error",
Expand Down
2 changes: 1 addition & 1 deletion packages/pros-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[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.6.0", path = "../pros-sys" }
pros-sys = { version = "0.7.0", path = "../pros-sys" }

[features]
default = ["display_panics"]
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.6.0"
version = "0.7.0"
edition = "2021"
description = "EFI for the PROS rust bindings"
keywords = ["PROS", "Robotics", "bindings"]
Expand Down
4 changes: 2 additions & 2 deletions packages/pros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pros"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
description = "Rust bindings for PROS"
keywords = ["PROS", "Robotics", "bindings"]
Expand All @@ -24,7 +24,7 @@ pros-devices = { version = "0.1.0", path = "../pros-devices", optional = true }
pros-panic = { version = "0.1.0", path = "../pros-panic", optional = true }
pros-core = { version = "0.1.0", path = "../pros-core", optional = true }
pros-math = { version = "0.1.0", path = "../pros-math", optional = true }
pros-sys = { version = "0.6.0", path = "../pros-sys" }
pros-sys = { version = "0.7.0", path = "../pros-sys" }

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

0 comments on commit c25d1a2

Please sign in to comment.