Skip to content

Commit

Permalink
Release v0.9.0 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
makukha authored Feb 11, 2025
1 parent 7184dc3 commit 6c5dfe1
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 17 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ All notable changes to this project will be documented in this file based on [Ke

<!-- towncrier release notes start -->

## [v0.9.0](https://github.com/makukha/docsub/releases/tag/v0.9.0) — 2025-02-11

***Breaking 🔥***

- Renamed command `apply` to `sync` ([#84](https://github.com/makukha/docsub/issues/84))
- Changed configuration file root to `[tool.docsub]` ([#85](https://github.com/makukha/docsub/issues/85))

***Added 🌿***

- Support for Python 3.14, 3.13t, 3.14t ([#85](https://github.com/makukha/docsub/issues/85))

***Misc***

- Removed dependency on pydantic-settings ([#85](https://github.com/makukha/docsub/issues/85))


## [v0.8.3](https://github.com/makukha/docsub/releases/tag/v0.8.3) — 2025-02-06

***Added 🌿***
Expand Down
6 changes: 2 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ gh-pr *title:
# Release
# ---------
#
# just lint
# just test
# just lint test
# just docs
#
# just bump
Expand All @@ -96,8 +95,7 @@ gh-pr *title:
#
# just gh-pr
#
# just docs
# just build
# just docs build
# (merge pull request)
#
# just gh-release
Expand Down
1 change: 0 additions & 1 deletion NEWS.d/84.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion NEWS.d/85.added.md

This file was deleted.

1 change: 0 additions & 1 deletion NEWS.d/85.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion NEWS.d/85.misc.md

This file was deleted.

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
> Substitute dynamically generated content in Markdown files
[![license](https://img.shields.io/github/license/makukha/docsub.svg)](https://github.com/makukha/docsub/blob/main/LICENSE)
[![pypi](https://img.shields.io/pypi/v/docsub.svg#v0.8.3)](https://pypi.python.org/pypi/docsub)
[![pypi](https://img.shields.io/pypi/v/docsub.svg#v0.9.0)](https://pypi.python.org/pypi/docsub)
[![python versions](https://img.shields.io/pypi/pyversions/docsub.svg)](https://pypi.org/project/docsub)
[![tests](https://raw.githubusercontent.com/makukha/docsub/v0.8.3/docs/_static/badge-tests.svg)](https://github.com/makukha/docsub)
[![coverage](https://raw.githubusercontent.com/makukha/docsub/v0.8.3/docs/_static/badge-coverage.svg)](https://github.com/makukha/docsub)
[![tests](https://raw.githubusercontent.com/makukha/docsub/v0.9.0/docs/_static/badge-tests.svg)](https://github.com/makukha/docsub)
[![coverage](https://raw.githubusercontent.com/makukha/docsub/v0.9.0/docs/_static/badge-coverage.svg)](https://github.com/makukha/docsub)
[![tested with multipython](https://img.shields.io/badge/tested_with-multipython-x)](https://github.com/makukha/multipython)
[![uses docsub](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/makukha/docsub/refs/heads/main/docs/badge/v1.json)](https://github.com/makukha/docsub)
[![mypy](https://img.shields.io/badge/type_checked-mypy-%231674b1)](http://mypy.readthedocs.io)
Expand All @@ -16,7 +16,7 @@
> * With `docsub`, every documentation file may become executable.
> * Never use `docsub` to process files from untrusted sources.
> * This project is in experimental state, syntax and functionality may change significantly.
> * If still want to try it, use pinned package version `docsub==0.8.3`
> * If still want to try it, use pinned package version `docsub==0.9.0`

# Features
Expand Down Expand Up @@ -195,7 +195,7 @@ Recommended. The most flexible installation option, allowing [project-local comm
# pyproject.toml
[dependency-groups]
dev = [
"docsub==0.8.3",
"docsub==0.9.0",
]
```

Expand All @@ -204,7 +204,7 @@ dev = [
Works for simple cases.

```shell
uv tool install docsub==0.8.3
uv tool install docsub==0.9.0
```


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dev = [
# bump-my-version

[tool.bumpversion]
current_version = "0.8.3"
current_version = "0.9.0"
allow_dirty = true
files = [
{filename = "README.md"},
Expand Down
2 changes: 1 addition & 1 deletion src/docsub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .environment import Environment, pass_env

__version__ = '0.8.3'
__version__ = '0.9.0'

__all__ = [
'Environment',
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6c5dfe1

Please sign in to comment.