You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
<!-- next-header -->
8
8
## [Unreleased] - ReleaseDate
9
9
### Changed
10
+
10
11
*`Motor::new()` and `Driver::new()` methods now set the outputs upon their
11
12
initialisation to the documented defaults.
13
+
*`Motor::new()` and `Driver::new()` methods now also return errors if they fail
14
+
to set their outputs upon initialisation.
12
15
* Breaking: update to `embedded-hal` 1.0
16
+
* Renamed error types to their struct names
17
+
* Renamed `DriveCommand::Backwards` to `DriveCommand::Backward` to match
18
+
`DriveCommand::Forward`
19
+
20
+
### Removed
21
+
22
+
* Removed the `drive_forward`, `drive_backward`, `stop` and `brake`
23
+
functions as they are duplicates to the `drive` function with the
24
+
different enum variants and make the API surface larger
13
25
14
26
## [0.2.0] - 2023-11-28
27
+
15
28
### Changed
16
-
* Due to dependency updates the MSRV has been updated from 1.60 to 1.63. This should only be relevant if you use the `defmt` feature, but we now only test with 1.63 and not older releases, so it's not guaranteed to work otherwise.
29
+
30
+
* Due to dependency updates the MSRV has been updated from 1.60 to 1.63. This
31
+
should only be relevant if you use the `defmt` feature, but we now only test
32
+
with 1.63 and not older releases, so it's not guaranteed to work otherwise.
17
33
* Breaking: the API was migrated from `embedded-hal:0.2` to `embedded-hal:1.0.0-rc1`.
18
34
If your HAL does not yet implement this, then please use the previous release of the library.
0 commit comments