Skip to content

Commit

Permalink
Bump version to 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
KjellMorgenstern committed Sep 22, 2021
1 parent 67355fc commit cb86bd6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions FritzingInfo.plist
Original file line number Diff line number Diff line change
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.8</string>
<string>Fritzing 0.9.9</string>
<key>CFBundleShortVersionString</key>
<string>0.9.8</string>
<string>0.9.9</string>
<key>CFBundleVersion</key>
<string>bda4e</string>
<key>CFBundleIconFile</key>
Expand Down
8 changes: 4 additions & 4 deletions fritzing.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ IDI_ICON1 ICON DISCARDABLE "resources/system_icons/win/frit

#include <windows.h>

#define VER_FILEVERSION 0,9,8,0
#define VER_FILEVERSION_STR "0.9.8\0"
#define VER_FILEVERSION 0,9,9,0
#define VER_FILEVERSION_STR "0.9.9d\0"

#define VER_PRODUCTVERSION 0,9,8,0
#define VER_PRODUCTVERSION_STR "0.9.8\0"
#define VER_PRODUCTVERSION 0,9,9,0
#define VER_PRODUCTVERSION_STR "0.9.9\0"

#define VER_COMPANYNAME_STR "Fritzing"
#define VER_FILEDESCRIPTION_STR "Fritzing"
Expand Down
2 changes: 1 addition & 1 deletion org.fritzing.Fritzing.appdata.xml
Original file line number Diff line number Diff line change
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.8" date="2021-08-03"/>
<release version="0.9.9" date="2021-09-09"/>
</releases>
<provides>
<binary>Fritzing</binary>
Expand Down
2 changes: 1 addition & 1 deletion src/version/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ along with Fritzing. If not, see <http://www.gnu.org/licenses/>.

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

0 comments on commit cb86bd6

Please sign in to comment.