Skip to content

Commit 0fb40e1

Browse files
committed
Merge branch 'feature/limit_versions_of_components_used_by_GMF' into 'main'
Limit the version of components used by GMF See merge request adf/multimedia/esp-gmf!53
2 parents 62bb1cd + 8e978f8 commit 0fb40e1

File tree

7 files changed

+26
-8
lines changed

7 files changed

+26
-8
lines changed

gmf_elements/gmf_ai_audio/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.6.2
4+
5+
### Features
6+
7+
- Limit the version of `esp_audio_codec` and `esp_codec_dev` in `aec_rec` example
8+
39
## v0.6.1
410

511
### Bug Fixes

gmf_elements/gmf_ai_audio/examples/aec_rec/main/idf_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
espressif/esp_codec_dev:
33
require: "public"
4-
version: "^1.3.4"
4+
version: "~1.3"
55
espressif/esp_audio_codec:
6-
version: "^2.2.1"
6+
version: "~2.2"
77
espressif/gmf_io:
88
version: "^0.6"
99
espressif/gmf_misc:

gmf_elements/gmf_ai_audio/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.6.1"
1+
version: "0.6.2"
22
description: Espressif GMF AI Audio Elements Module
33
url: https://github.com/espressif/esp-gmf/tree/main/gmf_elements/gmf_ai_audio
44
documentation: "https://github.com/espressif/esp-gmf/blob/main/gmf_elements/gmf_ai_audio/README.md"

gmf_elements/gmf_audio/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.6.2
4+
5+
### Features
6+
7+
- Limit the version of `esp_audio_codec` and `esp_audio_effects`
8+
39
## v0.6.1
410

511
- Added missing #include "esp_gmf_audio_element.h" across all audio elements

gmf_elements/gmf_audio/idf_component.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.6.1"
1+
version: "0.6.2"
22
description: Espressif GMF Elements Audio Module
33
url: https://github.com/espressif/esp-gmf/tree/main/gmf_elements/gmf_audio
44
documentation: "https://github.com/espressif/esp-gmf/blob/main/gmf_elements/gmf_audio/README.md"
@@ -10,10 +10,10 @@ tags:
1010
dependencies:
1111
espressif/esp_audio_codec:
1212
require: public
13-
version: "*"
13+
version: "~2.2"
1414
espressif/esp_audio_effects:
1515
require: public
16-
version: "*"
16+
version: "~1.0"
1717
espressif/gmf_core:
1818
require: public
1919
version: "^0.6"

gmf_elements/gmf_io/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.6.2
4+
5+
### Features
6+
7+
- Limit the version of `esp_codec_dev`
8+
39
## v0.6.1
410

511
- Fixed memory leaks in I/O flash destroy API

gmf_elements/gmf_io/idf_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.6.1"
1+
version: "0.6.2"
22
description: Espressif GMF IO Module
33
url: https://github.com/espressif/esp-gmf/tree/main/gmf_elements/gmf_io
44
documentation: "https://github.com/espressif/esp-gmf/blob/main/gmf_elements/gmf_io/README.md"
@@ -10,7 +10,7 @@ tags:
1010
dependencies:
1111
espressif/esp_codec_dev:
1212
require: "public"
13-
version: "*"
13+
version: "~1.3"
1414
espressif/gmf_core:
1515
require: public
1616
version: "^0.6"

0 commit comments

Comments
 (0)