Skip to content

Commit

Permalink
Bumb version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KjellMorgenstern committed Jul 19, 2022
1 parent 64a8854 commit f713656
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions FritzingInfo.plist
Expand Up @@ -27,9 +27,9 @@ You should have received a copy of the GNU General Public License
<key>CFBundleExecutable</key>
<string>Fritzing</string>
<key>CFBundleGetInfoString</key>
<string>Fritzing 0.9.10</string>
<string>Fritzing 1.0.0</string>
<key>CFBundleShortVersionString</key>
<string>0.9.10</string>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>bda4e</string>
<key>CFBundleIconFile</key>
Expand Down
8 changes: 4 additions & 4 deletions fritzing.rc
Expand Up @@ -2,11 +2,11 @@ IDI_ICON1 ICON DISCARDABLE "resources/system_icons/win/frit

#include <windows.h>

#define VER_FILEVERSION 0,9,10,0
#define VER_FILEVERSION_STR "0.9.10b\0"
#define VER_FILEVERSION 1,0,0,0
#define VER_FILEVERSION_STR "1.0.0d\0"

#define VER_PRODUCTVERSION 0,9,10,0
#define VER_PRODUCTVERSION_STR "0.9.10\0"
#define VER_PRODUCTVERSION 1,0,0,0
#define VER_PRODUCTVERSION_STR "1.0.0d\0"

#define VER_COMPANYNAME_STR "Fritzing"
#define VER_FILEDESCRIPTION_STR "Fritzing"
Expand Down
4 changes: 2 additions & 2 deletions org.fritzing.Fritzing.appdata.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2014-2019 Fritzing Team <info_AT_fritzing.org> -->
<!-- Copyright 2020 Fritzing GmbH <info_AT_fritzing.org> -->
<!-- Copyright 2020-2021 Fritzing GmbH <info_AT_fritzing.org> -->
<component type="desktop">
<id>org.fritzing.Fritzing.desktop</id>
<metadata_license>CC-BY-SA-3.0</metadata_license>
Expand Down Expand Up @@ -49,7 +49,7 @@
<!-- <url type="donation">https://fritzing.org/shop/donations/</url> -->
<url type="translate">https://fritzing.org/support-us/language-translation/</url>
<releases>
<release version="0.9.10" date="2022-01-16"/>
<release version="1.0.0dev" date="2021-09-16"/>
</releases>
<provides>
<binary>Fritzing</binary>
Expand Down
8 changes: 4 additions & 4 deletions src/version/version.cpp
Expand Up @@ -32,10 +32,10 @@ along with Fritzing. If not, see <http://www.gnu.org/licenses/>.
#include "../utils/textutils.h"


QString Version::m_majorVersion("0");
QString Version::m_minorVersion("9");
QString Version::m_minorSubVersion("10");
QString Version::m_modifier("b");
QString Version::m_majorVersion("1");
QString Version::m_minorVersion("0");
QString Version::m_minorSubVersion("0");
QString Version::m_modifier("d");
QString Version::m_gitVersion(GIT_VERSION);
QString Version::m_gitDate(GIT_DATE); // want standard ISO form
QString Version::m_date;
Expand Down

0 comments on commit f713656

Please sign in to comment.