Skip to content

Commit 1808d73

Browse files
committed
pbio/version: bump to v4.0.0-alpha.0
We plan on calling the next release v4. The main purpose of changing this now is so that the WebUSB BOS descriptors will point to labs.pybricks.com instead of code.pybricks.com. Also fix missing include in usb_common_desc.c to make this actually take effect.
1 parent 85b7340 commit 1808d73

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

lib/pbio/drv/usb/usb_common_desc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#if PBDRV_CONFIG_USB
1010

11+
#include <pbio/version.h>
12+
1113
#include "usb_common_desc.h"
1214

1315
#if PBIO_VERSION_LEVEL_HEX == 0xA

lib/pbio/include/pbio/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
#include <pbio/util.h>
1515

1616
/** The current major version. */
17-
#define PBIO_VERSION_MAJOR 3
17+
#define PBIO_VERSION_MAJOR 4
1818

1919
/** The current minor version. */
20-
#define PBIO_VERSION_MINOR 6
20+
#define PBIO_VERSION_MINOR 0
2121

2222
/** The current patch version. */
23-
#define PBIO_VERSION_MICRO 1
23+
#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 0xA
2727

2828
/** The current prerelease serial. */
2929
#define PBIO_VERSION_SERIAL 0

0 commit comments

Comments
 (0)