summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-05-28 17:24:35 +0700
committerhathach <[email protected]>2021-05-28 17:24:35 +0700
commite9c22e4a5c797e33c4ed5a735bf0d3d6e45b9a78 (patch)
treeda2e78c2e8f95bf9d4c4a9b23a0b1cf3e7d792df
parent81d238bd463c694af6ef31015107c0727805c7c7 (diff)
increase version for release0.10.0
-rw-r--r--docs/changelog.md12
-rw-r--r--src/tusb_option.h2
2 files changed, 8 insertions, 6 deletions
diff --git a/docs/changelog.md b/docs/changelog.md
index fba362904..323b6b6e2 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,6 +1,6 @@
# TinyUSB Changelog
-## WIP
+## 0.10.0 - 2021.05.28
- Rework tu_fifo_t with separated mutex for read and write, better support DMA with read/write buffer info. And constant address mode
- Improve audio_test example and add audio_4_channel_mic example
@@ -28,7 +28,7 @@
CDC
-- [Breaking] tud_cdc_peek(), tud_vendor_peek() dropped position parameter. If needed, tu_fifo_get_read_info() can be used to peek at random offset.
+- [Breaking] tud_cdc_peek(), tud_vendor_peek() no longer support random offset and dropped position parameter.
DFU
@@ -54,13 +54,15 @@ MIDI
### Host Controller Driver (HCD)
+- No noticable changes
+
### USB Host Driver (USBH)
-### Host Class Driver
+- No noticable changes
-HID
+### Host Class Driver
-- Rework host hid driver, basically everything changes
+- HID: Rework host hid driver, basically everything changes
## 0.9.0 - 2021.03.12
diff --git a/src/tusb_option.h b/src/tusb_option.h
index feff013c7..f8456ca4c 100644
--- a/src/tusb_option.h
+++ b/src/tusb_option.h
@@ -28,7 +28,7 @@
#define _TUSB_OPTION_H_
#define TUSB_VERSION_MAJOR 0
-#define TUSB_VERSION_MINOR 9
+#define TUSB_VERSION_MINOR 10
#define TUSB_VERSION_REVISION 0
#define TUSB_VERSION_STRING TU_STRING(TUSB_VERSION_MAJOR) "." TU_STRING(TUSB_VERSION_MINOR) "." TU_STRING(TUSB_VERSION_REVISION)