Skip to content

Commit

Permalink
release: v0.3.2 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu authored Apr 1, 2024
2 parents 35ce3fd + 3cd4bbc commit 4ac82d2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ build:
tools:
python: "3.11"
jobs:
post_install:
post_create_environment:
- pip install poetry
- poetry config virtualenvs.create false
- poetry install --only base,main,docs
post_install:
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --only base,main,docs

sphinx:
configuration: docs/source/conf.py
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [v0.3.2](https://github.com/eonu/feud/releases/tag/v0.3.2) - 2024-04-01

### Documentation

- specify virtual env location in `.readthedocs.yaml` ([#143](https://github.com/eonu/feud/issues/143))

## [v0.3.1](https://github.com/eonu/feud/releases/tag/v0.3.1) - 2024-01-12

### Documentation
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@

## About

> [!WARNING]
> _Writing command-line interfaces can get messy!_
Designing a _good_ CLI can quickly spiral into chaos without the help of
an intuitive CLI framework.

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.3.1"
release = "0.3.2"

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

__all__ = ["VERSION", "version_info"]

VERSION = "0.3.1"
VERSION = "0.3.2"


def version_info() -> str:
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.3.1"
version = "0.3.2"
license = "MIT"
authors = ["Edwin Onuonga <ed@eonu.net>"]
maintainers = ["Edwin Onuonga <ed@eonu.net>"]
Expand Down

0 comments on commit 4ac82d2

Please sign in to comment.