mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-23 15:27:28 +02:00
Merge pull request #255 from david-cermak/feat/modem_cz_bump
esp_modem: version 1.0.0 (plus cz-bump config)
This commit is contained in:
@ -47,7 +47,7 @@ def main():
|
|||||||
details = '[{}](https://github.com/espressif/esp-protocols/commit/{})'.format(commit, commit)
|
details = '[{}](https://github.com/espressif/esp-protocols/commit/{})'.format(commit, commit)
|
||||||
msg_details = git.show('-s', commit, _tty_out=False)
|
msg_details = git.show('-s', commit, _tty_out=False)
|
||||||
# check references
|
# check references
|
||||||
if any(str(msg_details) in s for s in ['esp-protocols/issues', 'BREAKING CHANGE', 'MAJOR CHANGE']):
|
if any(s in str(msg_details) for s in ['esp-protocols/issues', 'BREAKING CHANGE', 'MAJOR CHANGE']):
|
||||||
# Closes <issue>
|
# Closes <issue>
|
||||||
closes = re.findall(r'Closes ([^\d]+/(\d+))', str(msg_details), re.MULTILINE)
|
closes = re.findall(r'Closes ([^\d]+/(\d+))', str(msg_details), re.MULTILINE)
|
||||||
if closes and closes[0] is not None:
|
if closes and closes[0] is not None:
|
||||||
|
8
components/esp_modem/.cz.yaml
Normal file
8
components/esp_modem/.cz.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
commitizen:
|
||||||
|
bump_message: 'bump(modem): $current_version -> $new_version'
|
||||||
|
pre_bump_hooks: python ../../ci/changelog.py esp_modem
|
||||||
|
tag_format: modem-v$version
|
||||||
|
version: 1.0.0
|
||||||
|
version_files:
|
||||||
|
- idf_component.yml
|
@ -1,5 +1,31 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.0.0](https://github.com/espressif/esp-protocols/commits/modem-v1.0.0)
|
||||||
|
|
||||||
|
### Major changes
|
||||||
|
|
||||||
|
- Enable DTE to redefine on_read() and write(cmd) directly ([DTE to support sending and receiving raw data](https://github.com/espressif/esp-protocols/commit/bf114d3))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Add mqtt example in AT-only mode ([7547267](https://github.com/espressif/esp-protocols/commit/7547267))
|
||||||
|
- DTE to support sending and receiving raw data ([bf114d3](https://github.com/espressif/esp-protocols/commit/bf114d3))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Changelog to correctly pick references ([c59e330](https://github.com/espressif/esp-protocols/commit/c59e330))
|
||||||
|
- AT-only example: support MQTT over TLS on BG96 ([31d4323](https://github.com/espressif/esp-protocols/commit/31d4323))
|
||||||
|
- AT-only example: initial adaptation to BG96 ([ceedcfc](https://github.com/espressif/esp-protocols/commit/ceedcfc))
|
||||||
|
- warning in ap-2-pppos example when using lwip/napt ([bf32e45](https://github.com/espressif/esp-protocols/commit/bf32e45))
|
||||||
|
- trigger PR jobs based on labels ([13eca12](https://github.com/espressif/esp-protocols/commit/13eca12))
|
||||||
|
- Reintroduce missing CHANGELOGs ([200cbb3](https://github.com/espressif/esp-protocols/commit/200cbb3), [#235](https://github.com/espressif/esp-protocols/issues/235))
|
||||||
|
- Use default UART CLK source ([d0814bf](https://github.com/espressif/esp-protocols/commit/d0814bf), [#241](https://github.com/espressif/esp-protocols/issues/241))
|
||||||
|
- run CI build job for all targets ([a089e0d](https://github.com/espressif/esp-protocols/commit/a089e0d))
|
||||||
|
|
||||||
|
### Updated
|
||||||
|
|
||||||
|
- Update examples for USB v1.1 ([610372f](https://github.com/espressif/esp-protocols/commit/610372f))
|
||||||
|
|
||||||
|
|
||||||
## [0.1.28](https://github.com/espressif/esp-protocols/commits/01c26c8)
|
## [0.1.28](https://github.com/espressif/esp-protocols/commits/01c26c8)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ dependencies:
|
|||||||
## Required IDF version
|
## Required IDF version
|
||||||
idf: ">=4.1.0"
|
idf: ">=4.1.0"
|
||||||
espressif/esp_modem:
|
espressif/esp_modem:
|
||||||
version: "^0.1.20"
|
version: "^1.0.0"
|
||||||
override_path: "../../../"
|
override_path: "../../../"
|
||||||
espressif/esp_modem_usb_dte:
|
espressif/esp_modem_usb_dte:
|
||||||
version: "^1.1.0"
|
version: "^1.1.0"
|
||||||
|
@ -3,7 +3,7 @@ dependencies:
|
|||||||
## Required IDF version
|
## Required IDF version
|
||||||
idf: ">=4.1.0"
|
idf: ">=4.1.0"
|
||||||
espressif/esp_modem:
|
espressif/esp_modem:
|
||||||
version: "^0.1.23"
|
version: "^1.0.0"
|
||||||
override_path: "../../../"
|
override_path: "../../../"
|
||||||
espressif/esp_modem_usb_dte:
|
espressif/esp_modem_usb_dte:
|
||||||
version: "^1.1.0"
|
version: "^1.1.0"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
version: "0.1.28"
|
version: "1.0.0"
|
||||||
description: esp modem
|
description: esp modem
|
||||||
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem
|
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Reference in New Issue
Block a user