Skip to content

Commit 7bed18f

Browse files
committed
v3.2.0b1
1 parent 3479bee commit 7bed18f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Changelog
44

5-
## [Unreleased]
5+
## [3.2.0b1]
66

77
### Added
88
- Added `Stop.NONE` as `then` option for motors. This allows subsequent
@@ -239,7 +239,8 @@ Prerelease changes are documented at [support#48].
239239

240240

241241
<!-- diff links for headers -->
242-
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.1.0...HEAD
242+
[Unreleased]: https://github.com/pybricks/pybricks-micropython/compare/v3.2.0b1...HEAD
243+
[3.2.0b1]: https://github.com/pybricks/pybricks-micropython/compare/v3.1.0...v3.2.0b1
243244
[3.1.0]: https://github.com/pybricks/pybricks-micropython/compare/v3.0.0c1...v3.1.0
244245
[3.1.0c1]: https://github.com/pybricks/pybricks-micropython/compare/v3.0.0a4...v3.1.0c1
245246
[3.1.0b1]: https://github.com/pybricks/pybricks-micropython/compare/v3.0.0a4...v3.1.0b1

lib/pbio/include/pbio/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
// Copyright (c) 2019-2021 The Pybricks Authors
2+
// Copyright (c) 2019-2022 The Pybricks Authors
33

44
/**
55
* @addtogroup Version Version Information
@@ -17,16 +17,16 @@
1717
#define PBIO_VERSION_MAJOR 3
1818

1919
/** The current minor version. */
20-
#define PBIO_VERSION_MINOR 1
20+
#define PBIO_VERSION_MINOR 2
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)