diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 68466b1..1f608b2 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -27,12 +27,11 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - pip install pylint reorder-python-imports - pip install mypy reorder-python-imports - pip install wemake-python-styleguide reorder-python-imports - pip install black reorder-python-imports - pip install types-all reorder-python-imports - + pip install pylint + pip install mypy + pip install wemake-python-styleguide + pip install black + pip install types-all - name: Analysing the code with pylint id: pylint continue-on-error: true diff --git a/.github/workflows/master-linters.yml b/.github/workflows/master-linters.yml index 2a0b4af..782dde5 100644 --- a/.github/workflows/master-linters.yml +++ b/.github/workflows/master-linters.yml @@ -26,6 +26,7 @@ jobs: pip install mypy pip install wemake-python-styleguide pip install black + pip install types-all - name: Analysing the code with pylint id: pylint continue-on-error: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 92548f3..9856d5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,4 +33,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Fixed linters warnings -- README.md \ No newline at end of file +- README.md + +## [0.0.6] - 2023-10-14 + +### Changed +- Updated metadata + +## [0.0.7] - 2023-10-15 + +### Changed +- Updated metadata +- Updated GitHub workflows diff --git a/TODO.md b/TODO.md index e69de29..5afea7e 100644 --- a/TODO.md +++ b/TODO.md @@ -0,0 +1 @@ +Add tests diff --git a/pyproject.toml b/pyproject.toml index 5e101af..331b42f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "leonardo_api" -version = "0.0.6" +version = "0.0.7" authors = [ { name="Iliya Vereshchagin", email="i.vereshchagin@gmail.com" }, ] diff --git a/setup.cfg b/setup.cfg index da506bc..cc6a0d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = leonardo_api -version = attr: leonardo_api.0.0.6 +version = attr: leonardo_api.0.0.7 author = Iliya Vereshchagin author_email = i.vereshchagin@gmail.com maintainer = Iliya Vereshchagin