From c4f48f6e6d77da45ac6ded3f05df169b96048203 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 27 Jul 2026 22:21:28 +0200 Subject: [PATCH] bump version to 1.1.1 Drop the -pre suffix and finalize the version. Also corrects APP_VERSION_HEX, which had drifted out of sync with APP_VERSION since the 1.1.0 bump (stayed at 0x010001 instead of following the major/minor/patch per-byte encoding established at 1.0.0/0x010000 and 1.0.1/0x010001); now 0x010101 to match 1.1.1. Updates JuceLibraryCode/AppConfig.h's fallback JucePlugin_Version*/VersionString defines to match (normally overridden by the Makefile's -D flags, but were stale at 0.5.8). Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_011dhtwRLARk4eiPngcQykLJ --- JuceLibraryCode/AppConfig.h | 6 +++--- Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/JuceLibraryCode/AppConfig.h b/JuceLibraryCode/AppConfig.h index 5c6dc99..a952ffe 100644 --- a/JuceLibraryCode/AppConfig.h +++ b/JuceLibraryCode/AppConfig.h @@ -236,13 +236,13 @@ #define JucePlugin_EditorRequiresKeyboardFocus 0 #endif #ifndef JucePlugin_Version - #define JucePlugin_Version 0.5.8 + #define JucePlugin_Version 1.1.1 #endif #ifndef JucePlugin_VersionCode - #define JucePlugin_VersionCode 0x00050008 + #define JucePlugin_VersionCode 0x010101 #endif #ifndef JucePlugin_VersionString - #define JucePlugin_VersionString "0.5.8" + #define JucePlugin_VersionString "1.1.1" #endif #ifndef JucePlugin_VSTUniqueID #define JucePlugin_VSTUniqueID JucePlugin_PluginCode diff --git a/Makefile b/Makefile index 35052ce..3eb4ec8 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ include make/defaults.mk CONFIG ?= release TARGET ?= JaySynth.so -APP_VERSION := 1.1.0-pre -APP_VERSION_HEX := 0x010001 +APP_VERSION := 1.1.1 +APP_VERSION_HEX := 0x010101 LIBSRC_PATH ?= $(realpath ./submodule) JUCE_PATH := $(realpath ./sdk/juce/JUCE-3.1.1) VST2_SDK_PATH ?= $(realpath ./sdk/vst/vstsdk2.4)