Fix for packages.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2018-11-13 17:13:10 +02:00
parent 64b5427a15
commit 6b93b77247
9 changed files with 14 additions and 14 deletions

View File

@ -186,7 +186,7 @@ deploy:
package: valentina-win_auto-upload package: valentina-win_auto-upload
publish: true publish: true
override: true override: true
version: 0.6.1 version: 0.6.2
on: on:
DEPLOY: true DEPLOY: true
artifact: valentina-win-$(QT_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(APPVEYOR_REPO_COMMIT) artifact: valentina-win-$(QT_VERSION)-$(APPVEYOR_REPO_BRANCH)-$(APPVEYOR_REPO_COMMIT)

View File

@ -1,4 +1,4 @@
valentina (0.6.1) trusty; urgency=low valentina (0.6.2) trusty; urgency=low
* Auto build. * Auto build.

View File

@ -1,4 +1,4 @@
valentina (0.6.1) trusty; urgency=low valentina (0.6.2) trusty; urgency=low
* Auto build. * Auto build.

View File

@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>io.bitbucket.valentinaproject.@EXECUTABLE@</string> <string>io.bitbucket.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.6.1</string> <string>0.6.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.6.1.0</string> <string>0.6.2.0</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleDocumentTypes</key> <key>CFBundleDocumentTypes</key>

View File

@ -11,7 +11,7 @@
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>10.6</string> <string>10.6</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>
<string>© 2013-2017, Valentina project</string> <string>© 2013-2018, Valentina project</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>@TYPEINFO@</string> <string>@TYPEINFO@</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>io.bitbucket.valentinaproject.@EXECUTABLE@</string> <string>io.bitbucket.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.6.1</string> <string>0.6.2</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.6.1.0</string> <string>0.6.2.0</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleDocumentTypes</key> <key>CFBundleDocumentTypes</key>

2
dist/rpm/_service vendored
View File

@ -1,7 +1,7 @@
<services> <services>
<service name="tar_scm"> <service name="tar_scm">
<param name="url">https://github.com/dismine/Valentina_git.git</param> <param name="url">https://github.com/dismine/Valentina_git.git</param>
<param name="versionprefix">0.6.1</param> <param name="versionprefix">0.6.2</param>
<param name="filename">valentina</param> <param name="filename">valentina</param>
<param name="scm">git</param> <param name="scm">git</param>
<param name="versionformat">%at</param> <param name="versionformat">%at</param>

View File

@ -73,7 +73,7 @@ BuildRequires: libqt5-qtxmlpatterns-devel
Requires: poppler-utils Requires: poppler-utils
Version: 0.6.1 Version: 0.6.2
Release: 0 Release: 0
URL: https://bitbucket.org/dismine/valentina URL: https://bitbucket.org/dismine/valentina
License: GPL-3.0+ License: GPL-3.0+

View File

@ -42,7 +42,7 @@
extern const int MAJOR_VERSION = 0; extern const int MAJOR_VERSION = 0;
extern const int MINOR_VERSION = 6; extern const int MINOR_VERSION = 6;
extern const int DEBUG_VERSION = 1; extern const int DEBUG_VERSION = 2;
extern const QString APP_VERSION_STR(QStringLiteral("%1.%2.%3.%4").arg(MAJOR_VERSION).arg(MINOR_VERSION) extern const QString APP_VERSION_STR(QStringLiteral("%1.%2.%3.%4").arg(MAJOR_VERSION).arg(MINOR_VERSION)
.arg(DEBUG_VERSION).arg(LATEST_TAG_DISTANCE)); .arg(DEBUG_VERSION).arg(LATEST_TAG_DISTANCE));

View File

@ -40,13 +40,13 @@ extern const QString APP_VERSION_STR;
/* /*
APP_VERSION is (major << 16) + (minor << 8) + patch. APP_VERSION is (major << 16) + (minor << 8) + patch.
*/ */
#define APP_VERSION 0x000601 #define APP_VERSION 0x000602
// Change version number in projectversion.cpp too. // Change version number in projectversion.cpp too.
// Synchronize valentina.nsi // Synchronize valentina.nsi
#define VER_FILEVERSION 0,6,1,0 #define VER_FILEVERSION 0,6,2,0
#define VER_FILEVERSION_STR "0.6.1.0\0" #define VER_FILEVERSION_STR "0.6.2.0\0"
//#define V_PRERELEASE // Mark prerelease builds //#define V_PRERELEASE // Mark prerelease builds