Skip to content

Commit

Permalink
Release v0.8.3 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
makukha authored Feb 6, 2025
1 parent 1e5fcea commit 590f2d3
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ All notable changes to this project will be documented in this file based on [Ke

<!-- towncrier release notes start -->

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

***Added 🌿***

- Support indented substitution blocks in markdown ([#64](https://github.com/makukha/docsub/issues/64))


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

***Changed***
Expand Down
5 changes: 3 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,12 @@ gh-pr *title:
# just test
# just docs
#
# just gh-pr
#
# just bump
# just changelog
# (proofread changelog)
# (commit)
#
# just gh-pr
#
# just docs
# just build
Expand Down
1 change: 0 additions & 1 deletion NEWS.d/64.added.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.2)](https://pypi.python.org/pypi/docsub)
[![pypi](https://img.shields.io/pypi/v/docsub.svg#v0.8.3)](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.2/docs/_static/badge-tests.svg)](https://github.com/makukha/docsub)
[![coverage](https://raw.githubusercontent.com/makukha/docsub/v0.8.2/docs/_static/badge-coverage.svg)](https://github.com/makukha/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)
[![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.2`
> * If still want to try it, use pinned package version `docsub==0.8.3`

# 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.2",
"docsub==0.8.3",
]
```

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

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


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.2"
current_version = "0.8.3"
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.2'
__version__ = '0.8.3'

__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 590f2d3

Please sign in to comment.