Skip to content

Commit 1bfe8dc

Browse files
release: stable
1 parent e258a3a commit 1bfe8dc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ jobs:
2424
- name: Publish to TestPyPI
2525
uses: pypa/gh-action-pypi-publish@release/v1
2626
with:
27-
password: ${{ secrets.TESTPYPI_API_TOKEN }}
28-
repository-url: https://test.pypi.org/legacy/
27+
password: ${{ secrets.PYPI_API_TOKEN }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sql-inspector"
7-
version = "0.6"
7+
version = "1.0.0"
88
description = "A django middleware package to print out queries in the terminal"
99
license = { text = "MIT" }
1010
authors = [

tests/test_new.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_demo(client, settings, capsys):
1414
captured = capsys.readouterr()
1515
sys.stdout.write(captured.out)
1616

17-
assert "1 Toal Queries" in captured.out
17+
assert "1 Total Queries" in captured.out
1818

1919
assert response.status_code == 200
2020

0 commit comments

Comments
 (0)