Add micro bit of version number

This commit is contained in:
Hylke Bons 2020-11-28 17:53:37 +01:00
parent b0c2c48dd3
commit 5f8c858658
5 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,6 @@
3.36.0
3.28.0 (Sat 14 Jul, 2018):
Fixed a bunch of crashes and lots of under-the-hood improvements.

View File

@ -9,9 +9,9 @@
<key>CFBundleName</key>
<string>SparkleShare</string>
<key>CFBundleShortVersionString</key>
<string>3.38</string>
<string>3.38.0</string>
<key>CFBundleVersion</key>
<string>3.38</string>
<string>3.38.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>

View File

@ -2,7 +2,7 @@
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Name='SparkleShare' Id='184950D5-67F6-4D06-9717-7E2F1607A7B0' UpgradeCode='D3DF1D99-87F5-47A7-A349-863DD6E4B73A'
Language='1033' Codepage='1252' Version='3.38' Manufacturer='SparkleShare'>
Language='1033' Codepage='1252' Version='3.38.0' Manufacturer='SparkleShare'>
<Package Id='*' Keywords='Installer' Description="SparkleShare Setup" Manufacturer='SparkleShare'
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />

View File

@ -18,7 +18,7 @@
using System.Reflection;
[assembly:AssemblyTitle ("Sparkles")]
[assembly:AssemblyVersion ("3.38")]
[assembly:AssemblyVersion ("3.38.0")]
[assembly:AssemblyCopyright ("Copyright (c) 2010 Hylke Bons and others")]
namespace Sparkles {

View File

@ -6,7 +6,7 @@ configuration = configuration_data()
configuration.set('ABS_INSTALL_DIR', join_paths(get_option('prefix'), install_dir))
# This line is changed by scripts/bump-version.sh, so keep it intact
configuration.set('VERSION', '3.38')
configuration.set('VERSION', '3.38.0')
subdir('Sparkles')
subdir('Sparkles/Git')