From aa2b7eedf6d52d6d1e0eb251537987dff145331f Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Thu, 31 Aug 2023 12:48:51 -0400 Subject: [PATCH 1/3] Bump version --- docs/conf.py | 4 ++-- src/pydiscourse/__init__.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 49ef856..183d4f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ copyright = u'2014, Marc Sibson' # built documents. # # The short X.Y version. -version = '1.1' +version = '1.5' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.5.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/pydiscourse/__init__.py b/src/pydiscourse/__init__.py index 118ef72..b239593 100644 --- a/src/pydiscourse/__init__.py +++ b/src/pydiscourse/__init__.py @@ -1,8 +1,6 @@ -# -*- coding: utf-8 -*- - """Python client for the Discourse API.""" -__version__ = "1.3.0" +__version__ = "1.5.0" from pydiscourse.client import DiscourseClient From dfc0c4173cd420014734b4b7ffc7b5d2b19628df Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Thu, 31 Aug 2023 12:52:02 -0400 Subject: [PATCH 2/3] Update changelog --- HISTORY.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index ac4ee73..a02b143 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,21 @@ Release history =============== +1.5.0 +----- + +- Owner creation endpoint update from @akhmerov +- Python 3.11 support from @Dettorer +- Group membership fixes from @inducer +- Rate limiting fixes from @inducer +- Latest posts endpoint from @max-lancaster + + +1.4.0 +----- + +- Documented here as skipped release + 1.3.0 ----- From 4382449a725d44a72c11e31bd74a3b426e3b61cb Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Thu, 31 Aug 2023 12:53:06 -0400 Subject: [PATCH 3/3] Remove Python 3.7 support --- .github/workflows/test.yml | 2 +- setup.cfg | 1 - tox.ini | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b41ecdc..1c3ea61 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.8", "3.9", "3.10", "3.11" ] steps: - uses: actions/checkout@v1 diff --git a/setup.cfg b/setup.cfg index 5ff66eb..c6e88bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,7 +26,6 @@ classifiers = License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 diff --git a/tox.ini b/tox.ini index 15d72da..69a3ddd 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,6 @@ envlist = py37, py38, py39, py310, py311 [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 3.10: py310