Skip to content

Commit 80caa79

Browse files
committed
updates
1 parent 78f12ef commit 80caa79

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_with_fixture(db):
6666

6767
## pgpm Integration
6868

69-
The primary use case for pgsql-test is testing PostgreSQL modules managed by [pgpm](https://github.com/pgpm-io/pgpm). The `seed.pgpm()` adapter runs `pgpm deploy` to apply your migrations to an isolated test database.
69+
The primary use case for pgsql-test is testing PostgreSQL modules managed by [pgpm](https://pgpm.io). The `seed.pgpm()` adapter runs `pgpm deploy` to apply your migrations to an isolated test database.
7070

7171
### Prerequisites
7272

@@ -398,9 +398,19 @@ poetry run mypy src
398398

399399
## Related Projects
400400

401-
- [pgsql-test](https://github.com/launchql/pgsql-test) - The original TypeScript/Node.js version
402-
- [pgpm](https://github.com/pgpm-io/pgpm) - PostgreSQL Package Manager
401+
- [pgsql-test](https://www.npmjs.com/package/pgsql-test) - The original TypeScript/Node.js version
402+
- [pgpm](https://pgpm.io) - PostgreSQL Package Manager
403403

404404
## License
405405

406406
MIT
407+
408+
## Credits
409+
410+
**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
411+
412+
## Disclaimer
413+
414+
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
415+
416+
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pgsql-test"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "PostgreSQL testing framework for Python - instant, isolated databases with automatic transaction rollback"
55
authors = ["Constructive <developers@constructive.io>"]
66
license = "MIT"

src/pgsql_test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
"seed",
2020
]
2121

22-
__version__ = "0.1.0"
22+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)