From c7efd61a97a06f2b6da27238814ba8073b251528 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Tue, 23 Jul 2024 20:58:43 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1=20=E2=86=92=202.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- 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(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 913ad855..1e912ad7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1 +current_version = 2.0 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(-(?P.*)(?P\d+))? serialize = {major}.{minor}.{patch}-{devrc}{build} diff --git a/docs/index.md b/docs/index.md index 0327b1cd..598c673f 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.1.0/DiscoDOS-1.1.0-Win.exe) -- [macOS Installer](https://github.com/JOJ0/discodos/releases/download/v1.1.0/DiscoDOS-1.1.0-macOS.dmg) +- [Windows Installer](https://github.com/JOJ0/discodos/releases/download/v2.0.0/DiscoDOS-2.0.0-Win.exe) +- [macOS Installer](https://github.com/JOJ0/discodos/releases/download/v2.0.0/DiscoDOS-2.0.0-macOS.dmg) - Linux - read the [Installation Guide](https://discodos.readthedocs.io/en/latest/INSTALLATION.html#linux) - Install [the latest development version](https://discodos.readthedocs.io/en/latest/CONTRIBUTION.html) directly from git master diff --git a/posix_pack.sh b/posix_pack.sh index 7dcea709..29a45009 100755 --- a/posix_pack.sh +++ b/posix_pack.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION='1.1.0' +VERSION='2.0.0' if [[ $OSTYPE == "darwin"* ]]; then OS="macOS" diff --git a/pynsist.cfg b/pynsist.cfg index 9d2c9291..1de60e17 100644 --- a/pynsist.cfg +++ b/pynsist.cfg @@ -1,6 +1,6 @@ [Application] name=DiscoDOS -version=1.1.0 +version=2.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 f3448906..98fd0bd7 100644 --- a/setup_macapp.py +++ b/setup_macapp.py @@ -15,8 +15,8 @@ #'emulate_shell_environment': 'true', 'verbose': 'true', 'plist': { - 'CFBundleVersion': '1.1.0', - 'CFBundleShortVersionString': '1.1.0', + 'CFBundleVersion': '2.0.0', + 'CFBundleShortVersionString': '2.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 4dbe3187..02a36edb 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.1.0' +release = '2.0.0' # -- General configuration ---------------------------------------------------