diff options
author | Melody Horn <melody@boringcactus.com> | 2019-02-27 09:24:32 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2019-02-27 09:24:32 -0700 |
commit | ab2ea21fe586d5eda30ae3fc16977268a0ee7689 (patch) | |
tree | c1f9667a330c49f315cc874096baabf25c054436 | |
parent | ed581c74267867ed2a676efb74d74239926cbc4f (diff) | |
download | vidslice-ab2ea21fe586d5eda30ae3fc16977268a0ee7689.tar.gz vidslice-ab2ea21fe586d5eda30ae3fc16977268a0ee7689.zip |
bump version number to 1.1
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | vidslice.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ executables = [ ] setup(name='vidslice', - version='1.0', + version='1.1', description='', options=dict(build_exe=buildOptions), executables=executables) diff --git a/vidslice.py b/vidslice.py index 30c2c73..b9dcae9 100644 --- a/vidslice.py +++ b/vidslice.py @@ -109,7 +109,7 @@ class VidsliceFrame(wx.Frame): """Display an About Dialog""" info = wx.adv.AboutDialogInfo() info.SetName("vidslice") - info.SetVersion("1.0") + info.SetVersion("1.1") info.SetDescription("video manipulator wrapping youtube-dl and ffmpeg") info.SetWebSite("https://github.com/boringcactus/vidslice") |