Changelog¶
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.Options
instances 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.template
being 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.MultiKeywordArgument
andclassytags.arguments.KeywordArgument
and their behavior when given a default value.
0.3.1¶
- Fixed
classytags.arguments.MultiKeywordArgument
andclassytags.arguments.KeywordArgument
not returning sane defaults. - Added
child_nodelist
attribute 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.Options
class, to make the usage of custom parsers easier. - Added
classytags.values.DictValue
- Added
classytags.values.ChoiceValue
0.2.2¶
- Fixed issue in
classytags.helpers.AsTag
when trying to extract the variable to store the value in, but no argument is given. - Fixed
classytags.helpers.InclusionTag
not validating thetemplate
attribute 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.