Skip to content

Commit

Permalink
release: v0.1.0 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu authored Dec 5, 2023
2 parents 04d17ab + 0899214 commit 11b2609
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 63 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/auto-master-dev-merge.yml

This file was deleted.

31 changes: 10 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@

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

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

### Build System

- dont use `git fetch --unshallow` ([#78](https://github.com/eonu/feud/issues/78))
- remove auto-merge `master` -> `dev` workflow ([#80](https://github.com/eonu/feud/issues/80))

### Documentation

- add configuration reference to boolean type ([#81](https://github.com/eonu/feud/issues/81))

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

### Build System

- dont use `git fetch --unshallow` ([#78](https://github.com/eonu/feud/issues/78))

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

Expand All @@ -19,28 +26,18 @@ All notable changes to this project will be documented in this file.
- use `github-push-action` for auto-merge ([#75](https://github.com/eonu/feud/issues/75))
- use PAT for actions/checkout ([#76](https://github.com/eonu/feud/issues/76))

### Miscellaneous Tasks



## [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](https://github.com/eonu/feud/releases/tag/v0.1.0a5) - 2023-12-04

### Build System

- add write permissions to auto-merge workflow ([#69](https://github.com/eonu/feud/issues/69))

### Miscellaneous Tasks


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

### Build System
Expand All @@ -62,10 +59,6 @@ All notable changes to this project will be documented in this file.
- prefix tag with `v` ([#57](https://github.com/eonu/feud/issues/57))
- use `rickstaa/action-create-tag` to create tags ([#64](https://github.com/eonu/feud/issues/64))

### Miscellaneous Tasks

- add `cliff.toml` ([#50](https://github.com/eonu/feud/issues/50))

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

### Bug Fixes
Expand Down Expand Up @@ -97,8 +90,4 @@ All notable changes to this project will be documented in this file.
- add `action-automatic-releases` workflow ([#25](https://github.com/eonu/feud/issues/25))
- add `create-release-pr` workflow ([#26](https://github.com/eonu/feud/issues/26))

### Miscellaneous Tasks

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

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ commit_preprocessors = [
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^build", group = "Build System" },
{ message = "^chore|ci", group = "Miscellaneous Tasks" },
# { message = "^chore|ci", group = "Miscellaneous Tasks" },
{ message = "^doc", group = "Documentation" },
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
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.0a9"
release = "0.1.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/source/sections/typing/stdlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Common truth values that are accepted include any of the following (*case insens

By default, a negated version of the flag (e.g. ``--no-opt``) is also generated
to set the value to ``False``. The generation of this negated flag can be
disabled by setting **(TODO @eonu: Link to negate_flags=False in configuration).**
disabled by changing the :ref:`Feud configuration parameters <configuration>`.

.. dropdown:: Example
:animate: fade-in
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.0a9"
__version__ = "0.1.0"

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.0a9"
version = "0.1.0"
license = "MIT"
authors = ["Edwin Onuonga <ed@eonu.net>"]
maintainers = ["Edwin Onuonga <ed@eonu.net>"]
Expand Down

0 comments on commit 11b2609

Please sign in to comment.