Skip to content

Commit

Permalink
Release 7.4.1 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeklat authored Jun 21, 2024
1 parent ebd604d commit 823e43b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ Types of changes are:

## [Unreleased]

## [7.4.1] - 2024-06-21

### Fixes

- Allow `/` in branch name for `vcs`/`gh`/`glab` commands.

## [7.4.0] - 2024-06-21

# Features
### Features

- New config option to allow specifying the branch name prefix for `vcs` commands. By default, it is set to the git username:
```toml
Expand Down Expand Up @@ -440,7 +446,8 @@ If `tool.delfino.plugins.delfino-core.dockerhub` exists in the `pyproject.toml`:

- Initial source code

[Unreleased]: https://github.com/radeklat/delfino-core/compare/7.4.0...HEAD
[Unreleased]: https://github.com/radeklat/delfino-core/compare/7.4.1...HEAD
[7.4.1]: https://github.com/radeklat/delfino-core/compare/7.4.0...7.4.1
[7.4.0]: https://github.com/radeklat/delfino-core/compare/7.3.0...7.4.0
[7.3.0]: https://github.com/radeklat/delfino-core/compare/7.2.4...7.3.0
[7.2.4]: https://github.com/radeklat/delfino-core/compare/7.2.3...7.2.4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name="delfino-core"
version="7.4.0"
version="7.4.1"
authors = ["Radek Lát <[email protected]>"]
description="Delfino core plugin"
license = "MIT License"
Expand Down
2 changes: 1 addition & 1 deletion src/delfino_core/vcs_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_trunk_branch():


_LOGGER = logging.getLogger(__name__)
_INVALID_BRANCH_NAME_CHARS = re.compile(r"[^a-zA-Z0-9_-]+")
_INVALID_BRANCH_NAME_CHARS = re.compile(r"[^a-zA-Z0-9_/-]+")


def consume_args_until_next_option(passed_args: list[str]) -> tuple[str, list[str]]:
Expand Down

0 comments on commit 823e43b

Please sign in to comment.