Skip to content

Commit 36f8f1e

Browse files
authored
Merge pull request pydiscourse#93 from pydiscourse/v1.7
Bump version
2 parents 7d98168 + 2d27cc2 commit 36f8f1e

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: "3.11"
16+
python-version: "3.12"
1717

1818
- name: Install dependencies
1919
run: |
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
34+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
3535

3636
steps:
3737
- uses: actions/checkout@v1

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Release history
44
===============
55

6+
7+
1.7.0
8+
-----
9+
10+
- Possible breaking change: Change `search()` term paramater from `term` to `q`,
11+
fixes search. Thanks @weber-s
12+
- Add support for Python 3.12
13+
614
1.6.1
715
-----
816

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '1.6'
54+
version = '1.7'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '1.6.0'
56+
release = '1.7.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers =
2929
Programming Language :: Python :: 3.9
3030
Programming Language :: Python :: 3.10
3131
Programming Language :: Python :: 3.11
32+
Programming Language :: Python :: 3.12
3233

3334
[options.packages.find]
3435
where=src

src/pydiscourse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Python client for the Discourse API."""
22

3-
__version__ = "1.6.1"
3+
__version__ = "1.7.0"
44

55
from pydiscourse.client import DiscourseClient
66

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ python =
77
3.9: py39
88
3.10: py310
99
3.11: py311
10+
3.12: py312
1011

1112
[testenv]
1213
setenv =

0 commit comments

Comments
 (0)