Skip to content

Commit

Permalink
Version bump 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoorman committed Sep 12, 2016
1 parent 1a5c269 commit ea749d9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ __pycache__/
.DS_Store
*.egg-info/
*.py[cod]
dist/
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## [Unreleased] - 2016-09-09
## [0.1.1] - 2016-09-09
### Fixed
* Prevent making migrations when changing `WAGTAIL_THEMES` (issue [#2])

## 0.1.0 - 2016-09-09
### Added
* Initial prototype

[Unreleased]: https://github.com/moorinteractive/wagtail-themes/compare/0.1...HEAD
[0.1.1]: https://github.com/moorinteractive/wagtail-themes/compare/0.1...0.1.1
[#2]: https://github.com/moorinteractive/wagtail-themes/issues/2
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Site specific theme loader for Django Wagtail.

![ThemeSettings](docs/screenshot.jpg)

## Status

* Proof of Concept
* Under development

## Installation

Install the package
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
description-file = README.md
description-file=README.md

[wheel]
universal=1
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
from setuptools import find_packages, setup


Expand All @@ -6,17 +7,24 @@
'wagtail>=1.2'
]

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name='wagtail-themes',
version='0.1.0',
version='0.1.1',
description='Site specific theme loader for Django Wagtail.',
long_description=read('README.md'),
author='Rob Moorman',
author_email='rob@moori.nl',
url='https://github.com/moorinteractive/wagtail-themes',
license='MIT',
install_requires=install_requires,
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
classifier=[
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: Unix',
Expand Down

0 comments on commit ea749d9

Please sign in to comment.