Skip to content
Commits on Source (3)
......@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_.
`3.1.4`_ - 2023-07-20
---------------------
Fixed
~~~~~
* Extensible form was broken due to a missing import.
`3.1.3`_ – 2023-07-18
---------------------
......
......@@ -14,7 +14,7 @@ from django.db import models
from django.db.models import JSONField, QuerySet
from django.db.models.fields import CharField, TextField
from django.forms.forms import BaseForm
from django.forms.models import ModelForm, ModelFormMetaclass
from django.forms.models import ModelForm, ModelFormMetaclass, fields_for_model
from django.http import HttpResponse
from django.utils.functional import classproperty, lazy
from django.utils.translation import gettext as _
......
......@@ -31,7 +31,7 @@ author = "The AlekSIS Team"
# The short X.Y version
version = "3.1"
# The full version, including alpha/beta/rc tags
release = "3.1.3"
release = "3.1.4"
# -- General configuration ---------------------------------------------------
......
[tool.poetry]
name = "AlekSIS-Core"
version = "3.1.3"
version = "3.1.4"
packages = [
{ include = "aleksis" }
]
......