diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc0cd13..6f66680 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,8 +45,8 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - run: python -m pip install --upgrade pip wheel - - run: pip install tox tox-gh-actions pytest-cov codecov - - run: pytest --cov=./ --cov-report=xml + - run: pip install tox tox-gh-actions pytest-cov codecov quart + - run: tox - uses: codecov/codecov-action@v3 with: files: ./coverage.xml diff --git a/.travis.yml b/.travis.yml index 2e5ff60..34f5a43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,10 @@ matrix: env: TOXENV=pypy3 - python: 3.8 env: TOXENV=docs + - python: 3.10 + env: TOXENV=py310 + - python: 3.11 + env: TOXENV=py311 install: - pip install tox script: diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..39d5b55 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,5 @@ +# Quart-HTTPAuth change log + +**Release 1.0.0** - 2024-02-27 + +- First official release! diff --git a/README.md b/README.md index ed7f500..a4db352 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Quart-HTTPAuth ============== -[![Build status](https://github.com/miguelgrinberg/Flask-HTTPAuth/workflows/build/badge.svg)](https://github.com/miguelgrinberg/Flask-HTTPAuth/actions) [![codecov](https://codecov.io/gh/miguelgrinberg/Flask-HTTPAuth/branch/master/graph/badge.svg?token=KeU2002DHo)](https://codecov.io/gh/miguelgrinberg/Flask-HTTPAuth) +[![Build status](https://github.com/collinsmarra/Quart-HTTPAuth/workflows/build/badge.svg)](https://github.com/collinsmarra/Quart-HTTPAuth/actions) [![codecov](https://codecov.io/gh/collinsmarra/Quart-HTTPAuth/graph/badge.svg?token=USMED5G5O2)](https://codecov.io/gh/collinsmarra/Quart-HTTPAuth) **Quart-HTTPAuth: An Authentication Extension for Quart** diff --git a/pyproject.toml b/pyproject.toml index aab0a07..ccee1a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [project] name = "Quart-HTTPAuth" -version = "0.1.0" +version = "1.0.0" authors = [ - { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" } + { name = "Collins Kiplagat", email = "collinskiplagat8@gmail.com" } ] description = "Quart-HTTPAuth is a HTTP authentication library for Quart.This was modified from Flask-HTTPAuth." classifiers = [