From f75dc7ace6789efa5e92225645e7a12b81d4cd5a Mon Sep 17 00:00:00 2001 From: J0J0 T Date: Sun, 21 Mar 2021 10:44:42 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0-rc4=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 +-- docs/index.md | 4 ++-- posix_pack.sh | 2 +- pynsist.cfg | 2 +- setup_macapp.py | 4 ++-- sphinx/source/conf.py | 2 +- 6 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7efcac66..24d26246 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,10 +1,9 @@ [bumpversion] -current_version = 1.0.0-rc4 +current_version = 1.0.0 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(-(?P.*)(?P\d+))? serialize = {major}.{minor}.{patch}-{devrc}{build} {major}.{minor}.{patch} - #{major}.{minor} [bumpversion:part:devrc] optional_value = rc diff --git a/docs/index.md b/docs/index.md index 528f1dab..9e33b684 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,8 +25,8 @@ services [MusicBrainz](https://musicbrainz.org) and about your music (e.g key and BPM). ## Installation -- [Windows Installer](https://github.com/JOJ0/discodos/releases/download/v1.0.0-rc4/DiscoDOS-1.0.0-rc4-Win.exe) -- [macOS Installer](https://github.com/JOJ0/discodos/releases/download/v1.0.0-rc4/DiscoDOS-1.0.0-rc4-macOS.dmg) +- [Windows Installer](https://github.com/JOJ0/discodos/releases/download/v1.0.0/DiscoDOS-1.0.0-Win.exe) +- [macOS Installer](https://github.com/JOJ0/discodos/releases/download/v1.0.0/DiscoDOS-1.0.0-macOS.dmg) - Linux - read the [Installation Guide](https://discodos.readthedocs.io/en/latest/INSTALLATION.html#linux) DiscoDOS guides you through its setup automatically on first run. For further diff --git a/posix_pack.sh b/posix_pack.sh index 44d6f148..16753756 100755 --- a/posix_pack.sh +++ b/posix_pack.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION='1.0.0-rc4' +VERSION='1.0.0' if [[ $OSTYPE == "darwin"* ]]; then OS="macOS" diff --git a/pynsist.cfg b/pynsist.cfg index c045e2ac..7a05f9b7 100644 --- a/pynsist.cfg +++ b/pynsist.cfg @@ -1,6 +1,6 @@ [Application] name=DiscoDOS -version=1.0.0-rc4 +version=1.0.0 entry_point=discodos.cmd.open_shell_win:disco icon=assets/discodos_7-v6_big_fat_D_256x256.ico console=true diff --git a/setup_macapp.py b/setup_macapp.py index fd91bcef..98a45c87 100644 --- a/setup_macapp.py +++ b/setup_macapp.py @@ -15,8 +15,8 @@ #'emulate_shell_environment': 'true', 'verbose': 'true', 'plist': { - 'CFBundleVersion': '1.0.0-rc4', - 'CFBundleShortVersionString': '1.0.0-rc4', + 'CFBundleVersion': '1.0.0', + 'CFBundleShortVersionString': '1.0.0', 'CFBundleName': 'DiscoDOS', 'CFBundleDisplayName': 'DiscoDOS', 'CFBundleGetInfoString': 'DiscoDOS is the geekiest DJ tool on the planet', diff --git a/sphinx/source/conf.py b/sphinx/source/conf.py index 5d1e3326..80a6145e 100644 --- a/sphinx/source/conf.py +++ b/sphinx/source/conf.py @@ -29,7 +29,7 @@ version = '1.0' # The full version, including alpha/beta/rc tags -release = '1.0.0-rc4' +release = '1.0.0' # -- General configuration ---------------------------------------------------