Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(hotfix) 0.34.2 #143

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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