From 6189735f7a029ffa53d6e9f79be7e94db179a8d9 Mon Sep 17 00:00:00 2001 From: Brent Huisman Date: Wed, 5 Dec 2018 12:50:35 +0100 Subject: [PATCH] v1.0.3: Always forget to bump version numbers... --- README.md | 2 +- setup.py | 2 +- setup_cx.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e0d2be9..ae1e933 100755 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Example `par2deep.ini`: ### Changelog - * 2018-12-05: v1.0.3. Once again fixed imports. Should now work with loca, pip-installed and bundled versions. Gui and cli now show filename during executing actions stage. + * 2018-12-05: v1.0.3. Once again fixed imports. Should now work with local, pip-installed and bundled versions. Gui and cli now show filename during executing actions stage. * 2018-05-30: v1.0.2. GUI updates: file doubleclick now checkes if string is file, added tooltips to GUI settings, and treeview category headers have a bit for info (nb of files in category). CLI updates: same par2deep import check as GUI. * 2018-05-25: v1.0.1. Crossplatform doubleclick in treeview. Improved Windows par2 executable finding. New cx_Freeze installer script. Converted relative imports. * 2016-08-20: Ensured par2 command is called correctly from Windows and other OS in GUI mode. Added NSIS installer script. diff --git a/setup.py b/setup.py index c49f57e..7861ef5 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python from setuptools import setup -VERSION = '1.0.2' +VERSION = '1.0.3' with open("README.md", "rb") as f: long_descr = f.read() diff --git a/setup_cx.py b/setup_cx.py index efd1c39..885f932 100755 --- a/setup_cx.py +++ b/setup_cx.py @@ -1,7 +1,7 @@ from cx_Freeze import setup, Executable import sys,os.path,glob -VERSION = '1.0.2' +VERSION = '1.0.3' NAME = 'par2deep' DESCRIPTION = "Produce, verify and repair par2 files recursively."