diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index f288bcec..69476922 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -31,8 +31,8 @@ below with an "x", then click the "Submit new issue" button at the bottom #### I'm using DB4S version: -- [ ] 3.10.0-beta2 -- [ ] 3.10.0-beta1 +- [ ] 3.10.0 +- [ ] 3.10.0-beta* - [ ] 3.9.1 - [ ] Other: ___ diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cffef14..ed1d12b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -412,8 +412,8 @@ set(CPACK_PACKAGE_VENDOR "DB Browser for SQLite Team") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.md") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_VERSION_MAJOR "3") -set(CPACK_PACKAGE_VERSION_MINOR "9") -set(CPACK_PACKAGE_VERSION_PATCH "200") +set(CPACK_PACKAGE_VERSION_MINOR "10") +set(CPACK_PACKAGE_VERSION_PATCH "0") set(CPACK_PACKAGE_INSTALL_DIRECTORY "DB Browser for SQLite") if(WIN32 AND NOT UNIX) # There is a bug in NSIS that does not handle full unix paths properly. Make diff --git a/src/app.plist b/src/app.plist index 18d5a474..36b74d0d 100644 --- a/src/app.plist +++ b/src/app.plist @@ -52,7 +52,7 @@ CFBundleExecutable @EXECUTABLE@ CFBundleGetInfoString - 3.9.200 + 3.10.0 CFBundleIconFile @ICON@ CFBundleIdentifier @@ -64,11 +64,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.9.200 + 3.10.0 CFBundleSignature SqLB CFBundleVersion - 3.9.200 + 3.10.0 NSPrincipalClass NSApplication NSHighResolutionCapable diff --git a/src/version.h b/src/version.h index 2f31f479..a60f63e3 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,8 @@ #ifndef GEN_VERSION_H #define GEN_VERSION_H #define MAJOR_VERSION 3 -#define MINOR_VERSION 9 -#define PATCH_VERSION 200 +#define MINOR_VERSION 10 +#define PATCH_VERSION 0 #define str(s) #s #define xstr(s) str(s)