Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pixix4 committed Dec 27, 2024
1 parent a2e403e commit 93dee05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ev3dev-lang-rust"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
authors = ["Lars Westermann <[email protected]>"]

Expand All @@ -22,16 +22,14 @@ brickpi = []
brickpi3 = []

[dependencies]
ev3dev-lang-rust-derive = { path = "ev3dev_lang_rust_derive", version="0.10" }
ev3dev-lang-rust-derive = { path = "ev3dev_lang_rust_derive", version = "0.10" }
libc = "0.2"
framebuffer = { version = "0.3", optional = true }
image = { version = "0.24", optional = true }
image = { version = "0.25", optional = true }
paste = "1.0"

[workspace]
members = [
"ev3dev_lang_rust_derive"
]
members = ["ev3dev_lang_rust_derive"]

[profile.release]
lto = true
Expand Down
1 change: 1 addition & 0 deletions ev3dev_lang_rust_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "ev3dev-lang-rust-derive"
version = "0.10.0"
edition = "2021"
authors = ["Lars Westermann <[email protected]>"]

description = "Derive macros for ev3dev_lang_rust"
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/compass_sensor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl CompassSensor {
/// turn the robot 360 degrees
/// end the calibration by stop_calibration()
/// attention: if calibration has not finished, the get_rotation method always returns -258
///
/// starts the calibration
pub fn start_calibration(&self) -> Ev3Result<()> {
self.set_command(Self::COMMAND_START_CALIBRATION)
Expand Down

0 comments on commit 93dee05

Please sign in to comment.