diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 1c0b9be8..c48e0c19 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,8 +1,14 @@ version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.11" + sphinx: configuration: docs/conf.py + python: - version: 3.7 install: - requirements: docs/requirements.txt - method: pip diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 048e635c..249044ad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ Changelog ######### +Version 1.10.0 +------------- + +**New**: + +* Prospector profiles can now be loaded from external packages, meaning that behaviour can be packaged and re-used across projects - `#604 `_ +* Added pyright as an optional additional tool - `#612 `_ +* `use-dmypy` option now passed through to MyPy `#611 `_ + Version 1.9.0 ------------- diff --git a/README.rst b/README.rst index 7d95c05b..6b467bcb 100644 --- a/README.rst +++ b/README.rst @@ -4,8 +4,8 @@ prospector .. image:: https://img.shields.io/pypi/v/prospector.svg :target: https://pypi.python.org/pypi/prospector :alt: Latest Version of Prospector -.. image:: https://github.com/PyCQA/prospector/actions/workflows/ci.yaml/badge.svg - :target: https://github.com/PyCQA/prospector/actions/workflows/ci.yaml +.. image:: https://github.com/PyCQA/prospector/actions/workflows/tests.yml/badge.svg + :target: https://github.com/PyCQA/prospector/actions/workflows/tests.yml :alt: Build Status .. image:: https://img.shields.io/coveralls/PyCQA/prospector.svg?style=flat :target: https://coveralls.io/r/PyCQA/prospector diff --git a/docs/index.rst b/docs/index.rst index 129964e7..91c3c483 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,8 +10,8 @@ About .. image:: https://img.shields.io/pypi/v/prospector.svg :target: https://pypi.python.org/pypi/prospector :alt: Latest Version of Prospector -.. image:: https://travis-ci.org/PyCQA/prospector.png?branch=master - :target: https://travis-ci.org/PyCQA/prospector +.. image:: https://github.com/PyCQA/prospector/actions/workflows/tests.yml/badge.svg + :target: https://github.com/PyCQA/prospector/actions/workflows/tests.yml :alt: Build Status .. image:: https://img.shields.io/coveralls/PyCQA/prospector.svg?style=flat :target: https://coveralls.io/r/PyCQA/prospector diff --git a/pyproject.toml b/pyproject.toml index 2254316f..d2d9c94b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "prospector" -version = "1.9.1" +version = "1.10.0" description = "Prospector is a tool to analyse Python code by aggregating the result of other tools." authors = ["Carl Crowder "] maintainers = ["Carl Crowder ",