Skip to content

Commit 5c4b95d

Browse files
author
aidenlu
committed
bump: version 0.8.0 → 0.8.1
1 parent 6f3987c commit 5c4b95d

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.8.1 (2023-04-18)
2+
3+
### Fix
4+
5+
- rename varibale msgtype to message_subtype
6+
17
## v0.8.0 (2023-04-12)
28

39
### Feat

notification/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.0"
1+
__version__ = "0.8.1"

pyproject.toml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
11
[tool.commitizen]
2-
version = "0.8.0"
2+
version = "0.8.1"
33
changelog_start_rev = "0.7.0"
44
tag_format = "v$major.$minor.$patch$prerelease"
5-
version_files = [
6-
"pyproject.toml:version",
7-
"notification/__init__.py"
8-
]
5+
version_files = ["pyproject.toml:version", "notification/__init__.py"]
96

107
[tool.poetry]
118
name = "django-user-notification"
12-
version = "0.8.0"
9+
version = "0.8.1"
1310
description = "Django message notification package"
1411
authors = ["Aiden Lu <allaher@icloud.com>"]
1512
readme = "README.md"
1613
keywords = ["notification", "django"]
17-
packages = [
18-
{ include = "notification" },
19-
]
14+
packages = [{ include = "notification" }]
2015
homepage = "https://github.com/aiden520/django-user-notification"
2116
repository = "https://github.com/aiden520/django-user-notification"
2217
classifiers = [
@@ -25,16 +20,14 @@ classifiers = [
2520
"Topic :: Software Development :: Libraries :: Python Modules",
2621
]
2722
license = "Apache-2.0"
28-
include = [
29-
"LICENSE",
30-
]
23+
include = ["LICENSE"]
3124

3225
[tool.poetry.dependencies]
3326
python = ">=3.8"
3427
django = ">=3.1"
3528
requests = "^2.27.1"
36-
channels = { version=">=3.0.4", optional=true }
37-
alibabacloud-dysmsapi20170525 = { version=">=2.0.16", optional=true }
29+
channels = { version = ">=3.0.4", optional = true }
30+
alibabacloud-dysmsapi20170525 = { version = ">=2.0.16", optional = true }
3831
markdownify = ">=0.11.2"
3932
django-tinymce = "^3.6.1"
4033

0 commit comments

Comments
 (0)