Skip to content

Commit

Permalink
bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed May 2, 2019
1 parent 41e0301 commit 45a11e7
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 9 deletions.
5 changes: 0 additions & 5 deletions CHANGELOG.md

This file was deleted.

15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Release History
===============

1.0.1 - 2018-05-02
------------------

* Use current date as sub-folder in message store
* Use password widget for `key_pass` field of PrivateKey
* Better rendering of headers and payload in messages
* Include templates in the distribution

1.0.0 - 2018-05-01
------------------

* Initial release.
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include LICENSE
include README.*
recursive-include pyas2/static *
recursive-include pyas2/templates *
recursive-include pyas2/templatetags *.py
recursive-include pyas2/management *.py
recursive-include pyas2/migrations *.py
recursive-include pyas2 *.py
2 changes: 1 addition & 1 deletion pyas2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the version
__version__ = '1.0.0'
__version__ = '1.0.1'

default_app_config = 'pyas2.apps.Pyas2Config'

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from setuptools import setup

root = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -24,14 +24,14 @@

setup(
name='django-pyas2',
version='1.0.0',
version='1.0.1',
description='A Django app for transferring files using AS2 protocol',
license="GNU GPL v3.0",
long_description=README,
author='Abhishek Ram',
author_email='[email protected]',
url='http://github.com/abhishek-ram/django-pyas2',
packages=find_packages(),
packages=['pyas2'],
zip_safe=False,
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 45a11e7

Please sign in to comment.