From 99fe3ea4caac98baeb9006e406a52b4ffdb33b6d Mon Sep 17 00:00:00 2001 From: Mayank Gupta Date: Fri, 30 Apr 2021 18:27:34 +0200 Subject: [PATCH] v1.1.5 with release binaries --- AllChangelog.md | 4 ++++ release.md | 7 ++----- transfer.spec | 34 ++++++++++++++++++++++++++++++++++ transfer/version.py | 2 +- 4 files changed, 41 insertions(+), 6 deletions(-) create mode 100644 transfer.spec diff --git a/AllChangelog.md b/AllChangelog.md index a00bcd2..7128908 100644 --- a/AllChangelog.md +++ b/AllChangelog.md @@ -1,5 +1,9 @@ # Changelogs +## V1.1.5 + +* updated workflow to release binaries + ## V1.1.4 * ``--purge`` added in list diff --git a/release.md b/release.md index 06c82c2..2f85923 100644 --- a/release.md +++ b/release.md @@ -1,8 +1,5 @@ # Changelogs -## V1.1.4 +## V1.1.5 -* ``--purge`` added in list -* bugs fixed and stability improved -* added support for ``python3.7`` and ``python3.6`` -* fixed bug on empty file uploading +* updated workflow to release binaries diff --git a/transfer.spec b/transfer.spec new file mode 100644 index 0000000..ab1d6a1 --- /dev/null +++ b/transfer.spec @@ -0,0 +1,34 @@ +# -*- mode: python ; coding: utf-8 -*- + + +block_cipher = None + + +a = Analysis(['transfer/cli.py'], + pathex=['transfer'], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='transfer', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True ) diff --git a/transfer/version.py b/transfer/version.py index 0989ba1..292b1fc 100644 --- a/transfer/version.py +++ b/transfer/version.py @@ -1,4 +1,4 @@ -__version__ = "1.1.4" +__version__ = "1.1.5" if __name__ == '__main__':