mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
1.4.0
This commit is contained in:
parent
ed7af1bf11
commit
dcfc74e8ae
2 changed files with 13 additions and 2 deletions
|
|
@ -8,11 +8,12 @@ We follow [Semantic Versions](https://semver.org/) starting at the `0.14.0` rele
|
|||
|
||||
### Bug Fixes
|
||||
|
||||
## 1.3.2 (2023-06-29)
|
||||
## 1.4.0 (2023-07-07)
|
||||
|
||||
### Features
|
||||
|
||||
- Support Bahasa Indonesia Translations
|
||||
- Support Django 4.2
|
||||
|
||||
## 1.3.1 (2023-02-22)
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ include = '\.pyi?$'
|
|||
[tool.poetry]
|
||||
name = "django-eav2"
|
||||
description = "Entity-Attribute-Value storage for Django"
|
||||
version = "1.3.1"
|
||||
version = "1.4.0"
|
||||
license = "GNU Lesser General Public License (LGPL), Version 3"
|
||||
packages = [
|
||||
{ include = "eav" }
|
||||
|
|
@ -52,8 +52,18 @@ classifiers = [
|
|||
"Framework :: Django :: 3.2",
|
||||
"Framework :: Django :: 4.0",
|
||||
"Framework :: Django :: 4.1",
|
||||
"Framework :: Django :: 4.2",
|
||||
]
|
||||
|
||||
[tool.semantic_release]
|
||||
version_variable = [
|
||||
"pyproject.toml:version"
|
||||
]
|
||||
branch = "master"
|
||||
upload_to_pypi = false
|
||||
upload_to_release = false
|
||||
build_command = "pip install poetry && poetry build"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.8"
|
||||
django = ">=3.2,<4.3"
|
||||
|
|
|
|||
Loading…
Reference in a new issue