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

Prepare release of 1.4.0 #40

Merged
merged 4 commits into from
Jul 1, 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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-20.04
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]


## [1.4.0] -- 2024-07-01
### Added
- Options `--skip-cpp`, `--skip-python` and `--skip-cmake` to disable
auto-generated API documentation for the corresponding language.
Expand Down Expand Up @@ -86,7 +89,10 @@ Extracted the documentation build code from
some minor changes.


[Unreleased]: https://github.com/machines-in-motion/breathing-cat/compare/v1.3.1...HEAD
---

[Unreleased]: https://github.com/machines-in-motion/breathing-cat/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/machines-in-motion/breathing-cat/compare/v1.3.1...v1.4.0
[1.3.1]: https://github.com/machines-in-motion/breathing-cat/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/machines-in-motion/breathing-cat/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/machines-in-motion/breathing-cat/compare/v1.1.1...v1.2.0
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[build-system]
requires = ["setuptools>=61.0.0"]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"


[project]
name = "breathing_cat"
version = "1.3.1"
dynamic = ["version"]
description = "Tool to build documentation for C++/Python-Packages used at MPI-IS"
authors = [
{name = "Maximilien Naveau"},
Expand All @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
]
Expand All @@ -49,3 +50,6 @@ bcat = "breathing_cat.__main__:main"

[tool.setuptools.package-data]
breathing_cat = ["resources/**/*.in"]

[tool.setuptools_scm]
# nothing to configure here, but section needs to exist to enable setuptools_scm
Loading