mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Use a 2 part version number. We never used the first digit in 13 years of pgAdmin 3.
This commit is contained in:
@@ -23,8 +23,7 @@ APP_NAME = 'pgAdmin 4'
|
||||
APP_ICON = 'icon-postgres-alt'
|
||||
|
||||
# Application version number components
|
||||
APP_MAJOR = 1
|
||||
APP_MINOR = 0
|
||||
APP_RELEASE = 1
|
||||
APP_REVISION = 0
|
||||
|
||||
# Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string
|
||||
@@ -45,7 +44,7 @@ LANGUAGES = {
|
||||
|
||||
# DO NOT CHANGE!
|
||||
# The application version string, constructed from the components
|
||||
APP_VERSION = '%s.%s.%s-%s' % (APP_MAJOR, APP_MINOR, APP_REVISION, APP_SUFFIX)
|
||||
APP_VERSION = '%s.%s-%s' % (APP_RELEASE, APP_REVISION, APP_SUFFIX)
|
||||
|
||||
# DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING!
|
||||
# List of modules to skip when dynamically loading
|
||||
|
||||
Reference in New Issue
Block a user