Skip to content

Commit

Permalink
bump: version 2.5.0rc0 → 2.5.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
hfudev committed Sep 17, 2024
1 parent 105edc1 commit 5aef542
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## v2.5.0rc1 (2024-09-17)

### Fix

- build_arguments expand @p placeholders

### Refactor

- rename BuildArguments.ignore_warning_strings to ignore_warning_strs

## v2.5.0rc0 (2024-09-10)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion idf_build_apps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# ruff: noqa: E402
# avoid circular imports

__version__ = '2.5.0rc0'
__version__ = '2.5.0rc1'

from .session_args import (
SessionArgs,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ idf-build-apps = "idf_build_apps:main.main"

[tool.commitizen]
name = "cz_conventional_commits"
version = "2.5.0rc0"
version = "2.5.0rc1"
tag_format = "v$version"
version_files = [
"idf_build_apps/__init__.py",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_init_attr_override(capsys):
assert (
'Field `config` is deprecated. Will be removed in the next major release. ' 'Use field `config_rules` instead'
) in err_list[0]
assert ('Field `config_rules` is already set. Ignoring deprecated field `config`') in err_list[1]
assert 'Field `config_rules` is already set. Ignoring deprecated field `config`' in err_list[1]
assert (
'Field `config_rules_str` is deprecated. Will be removed in the next major release. '
'Use field `config_rules` instead'
Expand Down

0 comments on commit 5aef542

Please sign in to comment.