Skip to content

Commit 35fb5c4

Browse files
committedMar 21, 2024
v3.5.0b1
1 parent f3a7707 commit 35fb5c4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed
 

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
## [Unreleased]
66

7+
## [3.5.0b1] - 2024-03-21
8+
79
### Added
810
- Added support for rumble in `XboxController` ([support#1024]).
911
- Added `Button.UP`, `Button.DOWN`, `Button.LEFT`, and `Button.RIGHT` to
@@ -841,7 +843,8 @@ Prerelease changes are documented at [support#48].
841843

842844

843845
<!-- diff links for headers -->
844-
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.4.0...HEAD
846+
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.5.0b1...HEAD
847+
[3.5.0b1]: https://github.com/pybricks/pybricks-micropython/compare/v3.4.0...v3.5.0b1
845848
[3.4.0]: https://github.com/pybricks/pybricks-micropython/compare/v3.4.0b3...v3.4.0
846849
[3.4.0b3]: https://github.com/pybricks/pybricks-micropython/compare/v3.4.0b2...v3.4.0b3
847850
[3.4.0b2]: https://github.com/pybricks/pybricks-micropython/compare/v3.4.0b1...v3.4.0b2

‎lib/pbio/include/pbio/version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
#define PBIO_VERSION_MAJOR 3
1818

1919
/** The current minor version. */
20-
#define PBIO_VERSION_MINOR 4
20+
#define PBIO_VERSION_MINOR 5
2121

2222
/** The current patch version. */
2323
#define PBIO_VERSION_MICRO 0
2424

2525
/** The current prerelease level as a hex digit. */
26-
#define PBIO_VERSION_LEVEL_HEX 0xF
26+
#define PBIO_VERSION_LEVEL_HEX 0xB
2727

2828
/** The current prerelease serial. */
29-
#define PBIO_VERSION_SERIAL 0
29+
#define PBIO_VERSION_SERIAL 1
3030

3131
/**
3232
* The current prerelease level as a string.

0 commit comments

Comments
 (0)