Skip to content

Commit

Permalink
Fix for static files still being omitted; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmulley committed Feb 24, 2017
1 parent 52b5a19 commit f487f9b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.9.1 (2017-02-23)

* Python packaging change to fix omitting data files when installing

## 0.9.0 (2017-02-23)

* Use Django 1.9's `JSONField` to migrate to PostgreSQL 9.4's `jsonb` datatype.
Expand Down
2 changes: 1 addition & 1 deletion boundaries/management/commands/loadshapefiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def add_arguments(self, parser):
help=_('Merge strategy when there are duplicate slugs, either "combine" (extend the MultiPolygon) or "union" (union the geometries).')),

def get_version(self):
return '0.9.0'
return '0.9.1'

def handle(self, *args, **options):
if settings.DEBUG:
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

setup(
name="represent-boundaries",
version="0.9.0",
version="0.9.1",
description="A web API to geographic boundaries loaded from shapefiles, packaged as a Django app.",
author="Open North Inc.",
author_email="represent@opennorth.ca",
url="http://represent.poplus.org/",
license="MIT",
# If packaged as a zip/egg, Django will by default not find static files.
zip_safe=False,
# Tells setuptools to look in MANIFEST.in
include_package_data=True,
packages=[
'boundaries',
'boundaries.management',
Expand Down

0 comments on commit f487f9b

Please sign in to comment.