-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
afabiani
committed
Dec 13, 2019
1 parent
2fbcc0c
commit 20d716f
Showing
3 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Change Log | ||
|
||
## [0.1.15](https://github.com/GeoNode/geonode-user-messages/releases/tag/0.1.15) | ||
|
||
**Featrues** | ||
|
||
- [upgrade user-messages to be compatible with python3 and django1.11](https://github.com/GeoNode/geonode-user-messages/pull/16) | ||
|
||
### [Resolved Issues](https://github.com/GeoNode/geonode-user-messages/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+milestone%3A0.1.15) | ||
|
||
### [Full Changelog](https://github.com/GeoNode/geonode-user-messages/compare/0.1.14...2fbcc0c24825a95246451d39b3945a5fa259ea18) | ||
|
||
## [0.1.14](https://github.com/GeoNode/geonode-user-messages/releases/tag/0.1.14) | ||
|
||
### [Full Changelog](https://github.com/GeoNode/geonode-user-messages/compare/0.1.14...master) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
from distutils.core import setup | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
|
||
setup( | ||
name = "geonode-user-messages", | ||
version = "0.1.14", | ||
version = "0.1.15", | ||
author = "Eldarion", | ||
author_email = "[email protected]", | ||
description = "Fork of user-messages: a reusable private user messages application for Django", | ||
long_description = open("README.rst").read(), | ||
license = "BSD", | ||
url = "http://github.com/GeoNode/geonode-user-messages", | ||
packages = [ | ||
"user_messages", | ||
"user_messages.tests", | ||
"user_messages.migrations", | ||
"user_messages.templatetags", | ||
], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Web Environment", | ||
|