Releases: adamghill/coltrane
Releases · adamghill/coltrane
0.32.1
- Parse JSON5 data as UTF-8.
0.32.0
- Add
pubdate
to RSS feed #61 by Tobi-De.
- Support setting a custom
TIME_ZONE
.
0.31.0
- Create example
Dockerfile
and gunicorn.conf.py
files for easier deployments of coltrane
apps.
- Add the ability to use JSON5 for data files.
Breaking changes
- Remove loading
data.json
. All data should be in JSON files in the data
directory.
- The default markdown renderer is now
mistune
instead of markdown2
. The next version of coltrane
will remove the option to use markdown2
.
0.30.0
- Add
COLTRANE_IS_SECURE
env variable.
- Add
django.middleware.gzip.GZipMiddleware
, django.middleware.http.ConditionalGetMiddleware
, django.middleware.csrf.CsrfViewMiddleware
middlewares.
0.29.0
django-unicorn
integration.
- Fix: Passing
INSTALLED_APPS
into init
now does not override the default apps.
0.28.0
- Add
DISABLE_WILDCARD_TEMPLATES
setting
- Add
data
, slug
, template
, and now
to direct HTML template for as much parity to markdown
content as possible
0.27.0
- Support directory wildcards.
- Add
paths
template tag.
0.25.0
- If a markdown file with a slug cannot be found, look for a template with the same slug. Special case for
*.html
which can be a fall-back option to render for any slug.
- Add
raise_404
template tag.
- Add
last_path
template tag.
0.20.0
- Add
to_html
template tag. #37 by Tobi-De
- Breaking change: change
date
to publish_date
in metadata. #39 by Tobi-De
- Breaking change: change
SITE
setting to SITE_URL
.
- Automatically add
verbatim
templatetag around code fences.
0.18.2
- Add
request
to the template context when building static sites.