Skip to content

Commit

Permalink
release: v0.1.0a7 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu authored Dec 5, 2023
2 parents 850b986 + fd0b3c3 commit 1c7e22a
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 25 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/auto-master-dev-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
credentials: ${{secrets.AUTO_MERGE_SECRET}}
- name: Check out repository code
uses: actions/checkout@v4
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
- name: Merge master back to dev
run: |
git fetch --unshallow
Expand Down
29 changes: 9 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@

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

## [v0.1.0a6](https://github.com/eonu/feud/releases/tag/v0.1.0a6) - 2023-12-05
## [v0.1.0a7](https://github.com/eonu/feud/releases/tag/v0.1.0a7) - 2023-12-05

### Build System

- use `setup-git-credentials` for auto-merge workflow ([#71](https://github.com/eonu/feud/issues/71))
- hide release PRs from `CHANGELOG.md` ([#73](https://github.com/eonu/feud/issues/73))

### Miscellaneous Tasks


### Release
## [v0.1.0a6](https://github.com/eonu/feud/releases/tag/v0.1.0a6) - 2023-12-04

### Build System

- use `setup-git-credentials` for auto-merge workflow ([#71](https://github.com/eonu/feud/issues/71))

### Miscellaneous Tasks

- v0.1.0a5 ([#70](https://github.com/eonu/feud/issues/70))

## [v0.1.0a5](https://github.com/eonu/feud/releases/tag/v0.1.0a5) - 2023-12-04

Expand All @@ -24,10 +29,6 @@ All notable changes to this project will be documented in this file.
### Miscellaneous Tasks


### Release

- v0.1.0a4 ([#68](https://github.com/eonu/feud/issues/68))

## [v0.1.0a4](https://github.com/eonu/feud/releases/tag/v0.1.0a4) - 2023-12-04

### Build System
Expand All @@ -38,10 +39,6 @@ All notable changes to this project will be documented in this file.

- add `cliff.toml` issue/release number preprocessors ([#66](https://github.com/eonu/feud/issues/66))

### Release

- v0.1.0a3 ([#65](https://github.com/eonu/feud/issues/65))

## [v0.1.0a3](https://github.com/eonu/feud/releases/tag/v0.1.0a3) - 2023-12-04

### Build System
Expand Down Expand Up @@ -78,10 +75,6 @@ All notable changes to this project will be documented in this file.

- remove `CHANGELOG.md` ([#48](https://github.com/eonu/feud/issues/48))

### Release

- v0.1.0a2 ([#49](https://github.com/eonu/feud/issues/49))

## [v0.1.0a1](https://github.com/eonu/feud/releases/tag/v0.1.0a1) - 2023-12-03

### Features
Expand All @@ -96,8 +89,4 @@ All notable changes to this project will be documented in this file.

- remove `pkg` scope from `tag-version-commit` workflow ([#23](https://github.com/eonu/feud/issues/23))

### Release

- v0.1.0a1 ([#27](https://github.com/eonu/feud/issues/27))

<!-- generated by git-cliff -->
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ commit_parsers = [
{ message = "^fix", group = "Bug Fixes" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^release", group = "Release" },
# { message = "^release", group = "Release" },
{ message = "^revert", group = "Reversions" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
filter_commits = true
# regex for matching git tags
tag_pattern = "v[0-9].*"

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
project = "feud"
copyright = "2023-2025, Feud Developers" # noqa: A001
author = "Edwin Onuonga (eonu)"
release = "0.1.0a6"
release = "0.1.0a7"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion feud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Not all arguments are bad.
"""

__version__ = "0.1.0a6"
__version__ = "0.1.0a7"

from feud import click as click
from feud import exceptions as exceptions
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 = "feud"
version = "0.1.0a6"
version = "0.1.0a7"
license = "MIT"
authors = ["Edwin Onuonga <[email protected]>"]
maintainers = ["Edwin Onuonga <[email protected]>"]
Expand Down

0 comments on commit 1c7e22a

Please sign in to comment.