Changelog¶
0.7.1¶
- Prepare support for Django 1.10. Please note that Django 1.10 is not supported by this release, as Django 1.10 is not released yet.
0.7.0¶
- Added support for Django 1.9
- Added support for Python 3.5
- Added a nice
__repr__toclassytags.core.Options - Added ability to combine
classytags.core.Optionsinstances using the add operator.
0.6.2¶
- Fixed Django 1.8 support
0.6.1¶
- Packaging fixes
0.6.0¶
- Added support for Django 1.8
- Dropped support for Django 1.2
0.5.2¶
0.5.1¶
- Fixed
classytags.helpers.InclusionTag.templatebeing required.
0.5.0¶
- Added Python 3 support
- Added Advanced Block Definition.
- Added Arguments in depth documentation.
0.3.3¶
- Fixed issues with
classytags.helpers.InclusionTag`.
0.3.2¶
- Fixed issue in
classytags.arguments.MultiKeywordArgumentandclassytags.arguments.KeywordArgumentand their behavior when given a default value.
0.3.1¶
- Fixed
classytags.arguments.MultiKeywordArgumentandclassytags.arguments.KeywordArgumentnot returning sane defaults. - Added
child_nodelistattribute on tag instances as well as setting the child nodelists as attributes onto the instance during initialization for compatiblity with applications that require these attributes to be set.
0.3.0¶
- Added
classytags.arguments.KeywordArgument - Added
classytags.arguments.MultiKeywordArgument - Added
classytags.arguments.ChoiceArgument - Added ability to override the parser class in the initialization of the
classytags.core.Optionsclass, to make the usage of custom parsers easier. - Added
classytags.values.DictValue - Added
classytags.values.ChoiceValue
0.2.2¶
- Fixed issue in
classytags.helpers.AsTagwhen trying to extract the variable to store the value in, but no argument is given. - Fixed
classytags.helpers.InclusionTagnot validating thetemplateattribute on initialization.
0.2.1¶
- Fixed version in documentation not matching release version.
0.2.0¶
- Added ability to have typed arguments.
- Added
classytags.arguments.IntegerArgument - Added more graceful failing in non-debug mode by using warnings instead of exceptions.