Skip to content

Commit 421a9b2

Browse files
🔖 Bump to 1.3.0 and update changelog
1 parent b22e4b9 commit 421a9b2

File tree

4 files changed

+31
-15
lines changed

4 files changed

+31
-15
lines changed

Changelog.rst

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
Changelog
33
=========
44

5+
1.3.0 (2021-12-17)
6+
==================
7+
8+
Align supported version with Django LTS. The CI-tested versions are now Django 2.2 and
9+
3.2.
10+
11+
Django 3.0 and 3.1 probably also still work, but these are end of life and not
12+
officially supported.
13+
14+
* Dropped Django 1.11 support
15+
* Added Python 3.9 support
16+
* Added Python 3.10 support
17+
* Migrated from Travis CI to Github Action
18+
519
1.2.2 (2021-07-23)
620
==================
721

README.rst

+8-7
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Django-privates - private media integrration
55
Django-privates makes it easy to work with login-protected ``FileField``\ s,
66
all the way through your application.
77

8-
:Version: 1.2.0
8+
:Version: 1.3.0
99
:Source: https://github.com/sergei-maertens/django-privates
1010
:Keywords: django, media, private, storage
1111

12-
|build-status| |requirements| |coverage| |docs| |python-versions| |django-versions| |pypi-version|
12+
|build-status| |linting| |coverage| |docs| |python-versions| |django-versions| |pypi-version|
1313

1414
.. contents::
1515

@@ -48,12 +48,13 @@ template discovery):
4848
]
4949
5050
51-
.. |build-status| image:: https://travis-ci.org/sergei-maertens/django-privates.svg?branch=develop
52-
:target: https://travis-ci.org/sergei-maertens/django-privates
51+
.. |build-status| image:: https://github.com/sergei-maertens/django-privates/workflows/Run%20CI/badge.svg
52+
:target: https://github.com/sergei-maertens/django-privates/actions?query=workflow%3A%22Run+CI%22
53+
:alt: Run CI
5354

54-
.. |requirements| image:: https://requires.io/github/sergei-maertens/django-privates/requirements.svg?branch=develop
55-
:target: https://requires.io/github/sergei-maertens/django-privates/requirements/?branch=develop
56-
:alt: Requirements status
55+
.. |linting| image:: https://github.com/sergei-maertens/django-privates/workflows/Code%20quality%20checks/badge.svg
56+
:target: https://github.com/sergei-maertens/django-privates/actions?query=workflow%3A%22Code+quality+checks%22
57+
:alt: Code linting
5758

5859
.. |coverage| image:: https://codecov.io/gh/sergei-maertens/django-privates/branch/develop/graph/badge.svg
5960
:target: https://codecov.io/gh/sergei-maertens/django-privates

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
author = "Sergei Maertens"
2525

2626
# The short X.Y version
27-
version = "1.2"
27+
version = "1.3"
2828
# The full version, including alpha/beta/rc tags
29-
release = "1.2.0"
29+
release = "1.3.0"
3030

3131

3232
# -- General configuration ---------------------------------------------------

docs/index.rst

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to Django Privates's documentation!
77
===========================================
88

9-
|build-status| |requirements| |coverage|
9+
|build-status| |linting| |coverage|
1010

1111
|python-versions| |django-versions| |pypi-version|
1212

@@ -36,12 +36,13 @@ Indices and tables
3636
* :ref:`modindex`
3737
* :ref:`search`
3838

39-
.. |build-status| image:: https://travis-ci.org/sergei-maertens/django-privates.svg?branch=develop
40-
:target: https://travis-ci.org/sergei-maertens/django-privates
39+
.. |build-status| image:: https://github.com/sergei-maertens/django-privates/workflows/Run%20CI/badge.svg
40+
:target: https://github.com/sergei-maertens/django-privates/actions?query=workflow%3A%22Run+CI%22
41+
:alt: Run CI
4142

42-
.. |requirements| image:: https://requires.io/github/sergei-maertens/django-privates/requirements.svg?branch=develop
43-
:target: https://requires.io/github/sergei-maertens/django-privates/requirements/?branch=develop
44-
:alt: Requirements status
43+
.. |linting| image:: https://github.com/sergei-maertens/django-privates/workflows/Code%20quality%20checks/badge.svg
44+
:target: https://github.com/sergei-maertens/django-privates/actions?query=workflow%3A%22Code+quality+checks%22
45+
:alt: Code linting
4546

4647
.. |coverage| image:: https://codecov.io/gh/sergei-maertens/django-privates/branch/develop/graph/badge.svg
4748
:target: https://codecov.io/gh/sergei-maertens/django-privates

0 commit comments

Comments
 (0)