Skip to content

Commit 45a11e7

Browse files
author
abhishekram
committed
bump version to 1.0.1
1 parent 41e0301 commit 45a11e7

File tree

6 files changed

+29
-9
lines changed

6 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Release History
2+
===============
3+
4+
1.0.1 - 2018-05-02
5+
------------------
6+
7+
* Use current date as sub-folder in message store
8+
* Use password widget for `key_pass` field of PrivateKey
9+
* Better rendering of headers and payload in messages
10+
* Include templates in the distribution
11+
12+
1.0.0 - 2018-05-01
13+
------------------
14+
15+
* Initial release.

MANIFEST.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
include LICENSE
2+
include README.*
3+
recursive-include pyas2/static *
4+
recursive-include pyas2/templates *
5+
recursive-include pyas2/templatetags *.py
6+
recursive-include pyas2/management *.py
7+
recursive-include pyas2/migrations *.py
8+
recursive-include pyas2 *.py

pyas2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Set the version
2-
__version__ = '1.0.0'
2+
__version__ = '1.0.1'
33

44
default_app_config = 'pyas2.apps.Pyas2Config'
55

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import os
3-
from setuptools import setup, find_packages
3+
from setuptools import setup
44

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

@@ -24,14 +24,14 @@
2424

2525
setup(
2626
name='django-pyas2',
27-
version='1.0.0',
27+
version='1.0.1',
2828
description='A Django app for transferring files using AS2 protocol',
2929
license="GNU GPL v3.0",
3030
long_description=README,
3131
author='Abhishek Ram',
3232
author_email='abhishek8816@gmail.com',
3333
url='http://github.com/abhishek-ram/django-pyas2',
34-
packages=find_packages(),
34+
packages=['pyas2'],
3535
zip_safe=False,
3636
include_package_data=True,
3737
classifiers=[

0 commit comments

Comments
 (0)