Preparation for new release 0.4.5.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2016-05-07 11:34:39 +03:00
parent 91521f5df4
commit 0a5d9e6590
6 changed files with 8 additions and 8 deletions

View File

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

View File

@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>org.valentinaproject.@EXECUTABLE@</string> <string>org.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.4.4</string> <string>0.4.5</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.4.4.0</string> <string>0.4.5.0</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleDocumentTypes</key> <key>CFBundleDocumentTypes</key>

View File

@ -19,9 +19,9 @@
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>org.valentinaproject.@EXECUTABLE@</string> <string>org.valentinaproject.@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.4.4</string> <string>0.4.5</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.4.4.0</string> <string>0.4.5.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</param> <param name="url">https://github.com/dismine/Valentina.git</param>
<param name="versionprefix">0.4.4</param> <param name="versionprefix">0.4.5</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

@ -45,7 +45,7 @@ BuildRequires: libqt5-qtxmlpatterns-devel
Requires: poppler-utils Requires: poppler-utils
Version: 0.4.4 Version: 0.4.5
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

@ -33,7 +33,7 @@
extern const int MAJOR_VERSION = 0; extern const int MAJOR_VERSION = 0;
extern const int MINOR_VERSION = 4; extern const int MINOR_VERSION = 4;
extern const int DEBUG_VERSION = 4; extern const int DEBUG_VERSION = 5;
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));