Skip to content

Commit

Permalink
v1.1.5 with release binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
MayankFawkes committed Apr 30, 2021
1 parent 2d3b430 commit 99fe3ea
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 6 deletions.
4 changes: 4 additions & 0 deletions AllChangelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelogs

## V1.1.5

* updated workflow to release binaries

## V1.1.4

* ``--purge`` added in list
Expand Down
7 changes: 2 additions & 5 deletions release.md
Original file line number Diff line number Diff line change
@@ -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
34 changes: 34 additions & 0 deletions transfer.spec
Original file line number Diff line number Diff line change
@@ -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 )
2 changes: 1 addition & 1 deletion transfer/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.4"
__version__ = "1.1.5"


if __name__ == '__main__':
Expand Down

0 comments on commit 99fe3ea

Please sign in to comment.