Skip to content

Commit c8bb881

Browse files
committed
Bump to version 3.0.0
1 parent f12d2f9 commit c8bb881

File tree

9 files changed

+29
-11
lines changed

9 files changed

+29
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ if(POLICY CMP0048)
22
cmake_policy(SET CMP0048 NEW)
33
endif()
44

5-
project(libQGLViewer LANGUAGES CXX VERSION 2.9.1)
5+
project(libQGLViewer LANGUAGES CXX VERSION 3.0.0)
66
cmake_minimum_required(VERSION 3.16)
77

88
# Qt6 minimum compiler version

QGLViewer/QGLViewer.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
TEMPLATE = lib
88
TARGET = QGLViewer
9-
VERSION = 2.9.1
9+
VERSION = 3.0.0
1010
CONFIG *= qt opengl warn_on shared thread create_prl rtti no_keywords
1111

1212
QGL_HEADERS = \

QGLViewer/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#ifndef QGLVIEWER_CONFIG_H
77
#define QGLVIEWER_CONFIG_H
88

9-
#define QGLVIEWER_VERSION 0x020901
9+
#define QGLVIEWER_VERSION 0x030000
1010

1111
// Get QT_VERSION and other Qt flags
1212
#include <qglobal.h>

QGLViewer/qglviewer.spec

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%define version_major 2
2-
%define version_minor 9
3-
%define version_revision 1
1+
%define version_major 3
2+
%define version_minor 0
3+
%define version_revision 0
44

55
Name: libQGLViewer
66
Version: %{version_major}.%{version_minor}.%{version_revision}
@@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT
153153
%{docDir}/examples/*/*
154154

155155
%changelog
156+
* Thu Aug 21 2025 Gilles Debunne <[email protected]> 3.0.0
157+
- Change license to LGPL v3.
158+
156159
* Sat Dec 31 2022 Gilles Debunne <[email protected]> 2.9.1
157160
- Qt5 compilation error fix.
158161

doc/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = libQGLViewer
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = "Version 2.9.1"
51+
PROJECT_NUMBER = "Version 3.0.0"
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a
@@ -1519,7 +1519,7 @@ QCH_FILE =
15191519
# The default value is: org.doxygen.Project.
15201520
# This tag requires that the tag GENERATE_QHP is set to YES.
15211521

1522-
QHP_NAMESPACE = com.libqglviewer.2.9.1
1522+
QHP_NAMESPACE = com.libqglviewer.3.0.0
15231523

15241524
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
15251525
# Help Project output. For more information please see Qt Help Project / Virtual

doc/changeLog.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232

3333
<h1>Change Log</h1>
3434

35+
<h2>Sat 31st 2025 - 3.0.0</h2>
36+
<b>New features</b>
37+
<ul>
38+
<li>Change license to LGPL-v3.</li>
39+
</ul>
40+
3541
<h2>Sat 31st 2022 - 2.9.1</h2>
3642
<b>Bug fixes or improvements</b>
3743
<ul>

doc/index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,15 @@ <h2>Latest changes</h2>
8989

9090
<table style="width:90%; margin-left:50px; border:1px solid #AAF; background-color:#DDE" cellspacing="8" cellpadding="8">
9191

92+
<tr>
93+
<td>
94+
<b>Aug 21st, 2025</b>
95+
<br/>
96+
<a href="changeLog.html">Version 3.0.0</a>
97+
</td>
98+
<td>Change license to LGPL v3.</td>
99+
</tr>
100+
92101
<tr>
93102
<td>
94103
<b>Dec 31st, 2022</b>

libQGLViewer.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name libQGLViewer
1313

1414
# Defines
1515
!define REGKEY "SOFTWARE\$(^Name)"
16-
!define VERSION 2.9.1
16+
!define VERSION 3.0.0
1717
!define COMPANY "Gilles Debunne"
1818
!define URL http://www.libqglviewer.com/
1919

@@ -66,7 +66,7 @@ InstallDir $PROGRAMFILES\libQGLViewer
6666
CRCCheck on
6767
XPStyle on
6868
ShowInstDetails show
69-
VIProductVersion 2.9.1
69+
VIProductVersion 3.0.0
7070
VIAddVersionKey /LANG=${LANG_ENGLISH} ProductName "${NAME}"
7171
VIAddVersionKey /LANG=${LANG_ENGLISH} ProductVersion "${VERSION}"
7272
VIAddVersionKey /LANG=${LANG_ENGLISH} CompanyName "${COMPANY}"

makeDist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
libName="libQGLViewer"
4-
version="2.9.1"
4+
version="3.0.0"
55

66
WebURL="http://www.libqglviewer.com"
77

0 commit comments

Comments
 (0)