Skip to content

Commit 263e00a

Browse files
committed
chore: prepare 0.2.2 release
1 parent fe69043 commit 263e00a

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ python -m build
900900
python -m twine check dist/*
901901
```
902902

903-
A tag matching the package version, for example `v0.2.1`, runs unit and Docker integration
903+
A tag matching the package version, for example `v0.2.2`, runs unit and Docker integration
904904
tests, builds the wheel and source distribution, smoke-tests the installed wheel, and publishes
905905
through PyPI Trusted Publishing. The GitHub `pypi` environment and a PyPI trusted publisher for
906906
`O2eg/pg_stand` and `.github/workflows/publish.yml` must be configured before the first release.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pg-stand"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "Declarative Docker testbed manager for PostgreSQL"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -52,7 +52,7 @@ dev = [
5252
pg-stand = "pg_stand.cli:main"
5353

5454
[project.urls]
55-
Homepage = "https://github.com/O2eg/pg_stand"
55+
Homepage = "https://o2eg.com/"
5656
Repository = "https://github.com/O2eg/pg_stand"
5757
Issues = "https://github.com/O2eg/pg_stand/issues"
5858

src/pg_stand/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
from pg_stand.config import MANAGED_POSTGRES_PARAMETERS
44

5-
__version__ = "0.2.1"
5+
__version__ = "0.2.2"
66

77
__all__ = ["MANAGED_POSTGRES_PARAMETERS", "__version__"]

tests/test_packaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_distribution_metadata_matches_public_package_contract() -> None:
3434
assert project["license-files"] == ["LICENSE"]
3535
assert project["authors"] == [{"name": "O2eg", "email": "oleg.ispu@yandex.ru"}]
3636
assert project["urls"] == {
37-
"Homepage": "https://github.com/O2eg/pg_stand",
37+
"Homepage": "https://o2eg.com/",
3838
"Repository": "https://github.com/O2eg/pg_stand",
3939
"Issues": "https://github.com/O2eg/pg_stand/issues",
4040
}

0 commit comments

Comments
 (0)