Update version number to 3.10.100, which we're using for 3.11.0-alpha1

This commit is contained in:
Justin Clift
2018-10-08 17:43:44 +11:00
parent b4954f7b3b
commit e930b20f7c
6 changed files with 76 additions and 78 deletions

View File

@@ -31,9 +31,8 @@ below with an "x", then click the "Submit new issue" button at the bottom
#### I'm using DB4S version:
- [ ] 3.11.0-alpha*
- [ ] 3.10.1
- [ ] 3.10.0
- [ ] 3.9.1
- [ ] Other: ___
#### I have also:

View File

@@ -1,48 +1,47 @@
---
name: Bug Report
about: Create a report to help us improve
---
<!--
Thanks for coming here to report a bug. :)
Please describe it in this section, fill out the correct check boxes
below with an "x", then click the "Submit new issue" button at the bottom
-->
Details for the issue
--------------------
#### What did you do?
#### What did you expect to see?
#### What did you see instead?
Useful extra information
-------------------------
The info below often helps, please fill it out if you're able to. :)
#### What operating system are you using?
- [ ] Windows: ( _version:_ ___ )
- [ ] Linux: ( _distro:_ ___ )
- [ ] Mac OS: ( _version:_ ___ )
- [ ] Other: ___
#### What is your DB4S version?
- [ ] 3.10.1
- [ ] 3.10.0
- [ ] 3.9.1
- [ ] Other: ___
#### Did you also
- [ ] Try out the latest nightly version: https://github.com/sqlitebrowser/sqlitebrowser#nightly-builds
- [ ] Search for an existing similar issue: https://github.com/sqlitebrowser/sqlitebrowser/issues?utf8=%E2%9C%93&q=is%3Aissue%20
---
name: Bug Report
about: Create a report to help us improve
---
<!--
Thanks for coming here to report a bug. :)
Please describe it in this section, fill out the correct check boxes
below with an "x", then click the "Submit new issue" button at the bottom
-->
Details for the issue
--------------------
#### What did you do?
#### What did you expect to see?
#### What did you see instead?
Useful extra information
-------------------------
The info below often helps, please fill it out if you're able to. :)
#### What operating system are you using?
- [ ] Windows: ( _version:_ ___ )
- [ ] Linux: ( _distro:_ ___ )
- [ ] Mac OS: ( _version:_ ___ )
- [ ] Other: ___
#### What is your DB4S version?
- [ ] 3.11.0-alpha*
- [ ] 3.10.1
- [ ] Other: ___
#### Did you also
- [ ] Try out the latest nightly version: https://github.com/sqlitebrowser/sqlitebrowser#nightly-builds
- [ ] Search for an existing similar issue: https://github.com/sqlitebrowser/sqlitebrowser/issues?utf8=%E2%9C%93&q=is%3Aissue%20

View File

@@ -1,23 +1,23 @@
---
name: Feature Request
about: Suggest an idea or request a new feature
---
<!-- Thanks for coming here to suggest a new feature. :) -->
Describe the new feature
--------------------------
Additional info
---------------
Please answer these questions before submitting your feature request.
#### Is your feature request related to an issue? Please include the issue number.
#### Does this feature exist in another product or project? Please provide a link.
#### Do you have a screenshot? Please add screenshots to help explain your idea.
---
name: Feature Request
about: Suggest an idea or request a new feature
---
<!-- Thanks for coming here to suggest a new feature. :) -->
Describe the new feature
--------------------------
Additional info
---------------
Please answer these questions before submitting your feature request.
#### Is your feature request related to an issue? Please include the issue number.
#### Does this feature exist in another product or project? Please provide a link.
#### Do you have a screenshot? Please add screenshots to help explain your idea.

View File

@@ -512,7 +512,7 @@ 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 "10")
set(CPACK_PACKAGE_VERSION_PATCH "99")
set(CPACK_PACKAGE_VERSION_PATCH "100")
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

View File

@@ -55,7 +55,7 @@
<key>CFBundleExecutable</key>
<string>@EXECUTABLE@</string>
<key>CFBundleGetInfoString</key>
<string>3.10.99</string>
<string>3.10.100</string>
<key>CFBundleIconFile</key>
<string>@ICON@</string>
<key>CFBundleIdentifier</key>
@@ -67,11 +67,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.10.99</string>
<string>3.10.100</string>
<key>CFBundleSignature</key>
<string>SqLB</string>
<key>CFBundleVersion</key>
<string>3.10.99</string>
<string>3.10.100</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>

View File

@@ -2,7 +2,7 @@
#define GEN_VERSION_H
#define MAJOR_VERSION 3
#define MINOR_VERSION 10
#define PATCH_VERSION 99
#define PATCH_VERSION 100
#define str(s) #s
#define xstr(s) str(s)