From 3adbfb2c2dac86c873491004c9eeb6b174b97ff0 Mon Sep 17 00:00:00 2001 From: Pascal Thomet Date: Thu, 26 Oct 2023 23:36:53 +0200 Subject: [PATCH] Version 1.0.0 --- CMakeLists.txt | 1 - setup.py | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12a65099..15626678 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,4 @@ cmake_minimum_required(VERSION 3.16) -# Note: The real version is v1.0.0b1 (1.0.0 beta 1) project(imgui_bundle VERSION "1.0.0") # Remember to mirror changes to setup.py! diff --git a/setup.py b/setup.py index 56c699d1..980aebab 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,7 @@ import sys import os -VERSION = "1.0.0b1" # Remember to mirror changes on line 2 of main CMakeLists! - # (1.0.0 beta 1) - # Remember to remove classifiers=['Development Status :: 4 - Beta',] when releasing final version +VERSION = "1.0.0" # Remember to mirror changes on line 2 of main CMakeLists! THIS_DIR = os.path.dirname(__file__) ROOT_PACKAGE_FOLDER = "bindings/imgui_bundle" ROOT_PACKAGE_NAME = "imgui_bundle"