Skip to content

Commit f4aeea6

Browse files
committed
Version update
1 parent feabd92 commit f4aeea6

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

launcher/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>0.54.0</string>
22+
<string>0.54.1</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleVersion</key>
26-
<string>0.54.0</string>
26+
<string>0.54.1</string>
2727
<key>NSHighResolutionCapable</key>
2828
<true/>
2929
<key>CFBundleDevelopmentRegion</key>

launcher/common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static const char * classpath_separator = ":";
1818
#endif
1919

2020
static const char * common_jar_files[] = {
21-
"spin-tools-0.54.0.jar",
21+
"spin-tools-0.54.1.jar",
2222
"commons-cli-1.9.0.jar",
2323
"commons-codec-1.19.0.jar",
2424
"commons-collections4-4.5.0.jar",

launcher/spinc.macos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
declare -a JAR_FILES=(
4-
"spin-tools-0.54.0.jar"
4+
"spin-tools-0.54.1.jar"
55
"commons-cli-1.9.0.jar"
66
"commons-codec-1.19.0.jar"
77
"commons-collections4-4.5.0.jar"

launcher/spinide.macos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
declare -a JAR_FILES=(
4-
"spin-tools-0.54.0.jar"
4+
"spin-tools-0.54.1.jar"
55
"commons-cli-1.9.0.jar"
66
"commons-codec-1.19.0.jar"
77
"commons-collections4-4.5.0.jar"

launcher/spinide.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "spinide.manifest"
88

99
// Executable version information.
1010
VS_VERSION_INFO VERSIONINFO
11-
FILEVERSION 0,54,0,0
12-
PRODUCTVERSION 0,54,0,0
11+
FILEVERSION 0,54,1,0
12+
PRODUCTVERSION 0,54,1,0
1313
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
1414
#ifdef _DEBUG
1515
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
@@ -26,12 +26,12 @@ BEGIN
2626
BEGIN
2727
VALUE "CompanyName", "MaccaSoft"
2828
VALUE "FileDescription", "Spin Tools IDE"
29-
VALUE "FileVersion", "0,54,0.0"
29+
VALUE "FileVersion", "0,54,1.0"
3030
VALUE "InternalName", "Spin Tools IDE"
3131
VALUE "LegalCopyright", "(c) 2021-26 Marco Maccaferri"
3232
VALUE "OriginalFilename", "spinide.exe"
3333
VALUE "ProductName", "Spin Tools IDE"
34-
VALUE "ProductVersion", "0,54,0.0"
34+
VALUE "ProductVersion", "0,54,1.0"
3535
END
3636
END
3737
BLOCK "VarFileInfo"

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.maccasoft</groupId>
44
<artifactId>spin-tools-ide</artifactId>
5-
<version>0.54.0</version>
5+
<version>0.54.1</version>
66
<packaging>pom</packaging>
77
<description>Integrated Development Environment for Parallax Propeller microcontrollers.</description>
88
<developers>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.maccasoft</groupId>
2525
<artifactId>spin-tools</artifactId>
26-
<version>0.54.0</version>
26+
<version>0.54.1</version>
2727
<scope>runtime</scope>
2828
</dependency>
2929
</dependencies>

spin-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.maccasoft</groupId>
44
<artifactId>spin-tools</artifactId>
5-
<version>0.54.0</version>
5+
<version>0.54.1</version>
66
<packaging>jar</packaging>
77
<properties>
88
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

spin-tools/src/com/maccasoft/propeller/SpinTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
public class SpinTools {
119119

120120
public static final String APP_TITLE = "Spin Tools IDE";
121-
public static final String APP_VERSION = "0.54.0";
121+
public static final String APP_VERSION = "0.54.1";
122122

123123
static final File defaultSpin1Examples = new File(System.getProperty("APP_DIR"), "examples/P1").getAbsoluteFile();
124124
static final File defaultSpin2Examples = new File(System.getProperty("APP_DIR"), "examples/P2").getAbsoluteFile();

0 commit comments

Comments
 (0)