Skip to content

Commit

Permalink
Merge pull request #143 from jmlopez-rod/hotfix/0.34.2
Browse files Browse the repository at this point in the history
(hotfix) 0.34.2
  • Loading branch information
jmlopez-rod authored May 8, 2024
2 parents abf522d + 84478e3 commit 9f16213
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ The format of this changelog is based on
## [Unreleased]

## [0.34.2] <a name="0.34.2" href="#0.34.2">-</a> May 08, 2024

- Add `dependabot` as a default bypasser for the `CHANGELOG.md` check.

## [0.34.1] <a name="0.34.1" href="#0.34.1">-</a> May 08, 2024

- Provide another way to bypass the check for `CHANGELOG.md` when creating a
Expand Down Expand Up @@ -554,7 +558,8 @@ latest on the `master` branch.
- Provides basic utilities to create a CI/CD flow via the m cli.
- As a library, it facilities the creation of clis similar to m.

[unreleased]: https://github.com/jmlopez-rod/m/compare/0.34.1...HEAD
[unreleased]: https://github.com/jmlopez-rod/m/compare/0.34.2...HEAD
[0.34.2]: https://github.com/jmlopez-rod/m/compare/0.34.1...0.34.2
[0.34.1]: https://github.com/jmlopez-rod/m/compare/0.34.0...0.34.1
[0.34.0]: https://github.com/jmlopez-rod/m/compare/0.33.1...0.34.0
[0.33.1]: https://github.com/jmlopez-rod/m/compare/0.33.0...0.33.1
Expand Down
2 changes: 1 addition & 1 deletion m/m.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
owner: jmlopez-rod
repo: m
version: 0.34.1
version: 0.34.2
workflow: m_flow
build_tag_with_version: true
2 changes: 1 addition & 1 deletion packages/python/m/ci/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Config(BaseModel):
require_pr_changelog: bool = True

# List of github logins allowed to bypass the changelog requirement.
changelog_bypassers: list[str] = []
changelog_bypassers: list[str] = ['dependabot']

git_flow: GitFlowConfig = GitFlowConfig(
master_branch=Branches.master,
Expand Down

0 comments on commit 9f16213

Please sign in to comment.