Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Amertz08 committed Feb 13, 2020
1 parent f4b52fc commit 53c9e6c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
- h3 heading
- X.X.X - YYYY-MM-DD

### 1.5.0 - 2020-02-13

- Dropped support for `python<3.6`
- Type hinting
- `Django3` testing
- Added `drf_ujson.__version__`

### 1.4.1 - 2019-11-05

- Fixed repo url in `setup.py`
Expand Down
1 change: 1 addition & 0 deletions drf_ujson/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__author__ = "y.gavenchuk aka murminathor"
__version__ = (1, 5, 0)
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

from setuptools import setup, find_packages

from drf_ujson import __version__

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="drf_ujson2",
version="1.4.1",
version=".".join([str(i) for i in __version__]),
python_requires=">=3.6",
description="Django Rest Framework UJSON Renderer",
keywords="django,djangorestframework,ujson",
Expand Down

0 comments on commit 53c9e6c

Please sign in to comment.