Skip to content

Commit 1bb7a22

Browse files
committed
release v0.1.10
1 parent f562a10 commit 1bb7a22

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.1.10
2+
-------------
3+
4+
* Bump python version to 3.12.
5+
* Bump django version to 5.0.
6+
* Bump djangorestframework version to 3.15.
7+
8+
19
0.1.9
210
-------------
311

README.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
.. image:: https://github.com/jinkanhq/django-rest-tsg/actions/workflows/coverage.yml/badge.svg
1+
.. |coverage-passing| image:: https://github.com/jinkanhq/django-rest-tsg/actions/workflows/coverage.yml/badge.svg
22
:target: https://github.com/jinkanhq/django-rest-tsg/actions/workflows/coverage.yml
33

4-
.. image:: https://codecov.io/gh/jinkanhq/django-rest-tsg/branch/main/graph/badge.svg?token=LX8E3QB541
4+
.. |coverage| image:: https://codecov.io/gh/jinkanhq/django-rest-tsg/branch/main/graph/badge.svg?token=LX8E3QB541
55
:target: https://codecov.io/gh/jinkanhq/django-rest-tsg
66

7-
.. image:: https://badge.fury.io/py/django-rest-tsg.svg
7+
.. |pypi| image:: https://badge.fury.io/py/django-rest-tsg.svg
88
:target: https://badge.fury.io/py/django-rest-tsg
99

10+
|coverage-passing| |coverage| |pypi|
11+
1012
django-rest-tsg
1113
====================
1214

@@ -31,7 +33,7 @@ Requirements
3133
--------------
3234

3335
* Python >=3.9
34-
* Django >=3.0
36+
* Django >=3.2
3537
* Django REST Framework >=3.12
3638

3739
Usage

django_rest_tsg/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "Django REST TypeScript Generator"
2-
__version__ = "0.1.9"
2+
__version__ = "0.1.10"
33
__author__ = "Yinian Chin"
44
__license__ = "MIT License"
5-
__copyright__ = "Copyright 2021-2023 Yinian Chin"
5+
__copyright__ = "Copyright 2021-2024 Yinian Chin"
66

77
VERSION = __version__

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-rest-tsg"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
license = "MIT"
55
description = "A typescript code generator for Django Rest Framework."
66
readme = "README.rst"
@@ -34,8 +34,8 @@ include = ["README.rst", "CHANGELOG.rst", "LICENSE"]
3434
[tool.poetry.dependencies]
3535
python = "^3.9.0"
3636
django = [
37-
{ version = ">=3.0, <5.0", python = ">= 3.9.0, <3.10"},
38-
{ version = ">=3.0, <6.0", python = "^3.10.0"},
37+
{ version = ">=3.0, <5.0", python = ">= 3.9.0, <3.10" },
38+
{ version = ">=3.0, <6.0", python = "^3.10.0" },
3939
]
4040
djangorestframework = "^3.13"
4141
djangorestframework-dataclasses = "^1.3.0"

tests/test_django_rest_tsg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "0.1.9"
5+
assert __version__ == "0.1.10"

0 commit comments

Comments
 (0)