Change Log

v2.0.2 (2024-09-25)

v2.0.1 (2024-09-16)

v2.0.0 (2024-09-09)

Migration from 1.x -> 2.x

  • Imports of enum-properties extended TextChoices and IntegerChoices have been changed:

    # 1.x way
    from django_enum import TextChoices, IntegerChoices
    
    # 2.x way
    from django_enum.choices import TextChoices, IntegerChoices
    
  • Imports of EnumChoiceField for django forms has been changed:

    # 1.x way
    from django_enum import EnumChoiceField
    
    # 2.x way
    from django_enum.forms import EnumChoiceField
    
  • Imports of EnumFilter and FilterSet has been changed:

    # 1.x way
    from django_enum import EnumFilter, FilterSet
    
    # 2.x way
    from django_enum.filters import EnumFilter, FilterSet
    
  • Strict EnumField values are now constrained at the database level using CheckConstraints by default. To disable this behavior, set the constrained parameter to False.

v1.3.3 (2024-08-26)

v1.3.2 (2024-07-15)

v1.3.1 (2024-03-02)

v1.3.0 (2023-12-13)

v1.2.2 (2023-10-02)

v1.2.1 (2023-04-08)

v1.2.0 (2023-04-02)

v1.1.2 (2023-02-15)

v1.1.1 (2023-01-15)

v1.1.0 (2022-08-13)

v1.0.1 (2022-08-11)

  • Fix dependency issue - allow python 3.6

v1.0.0 (2022-08-11)

  • Initial Re-Release (production/stable)

v0.1.0 (2010-09-18)