Skip to content

Commit 9c65cdf

Browse files
committed
[release] 3.2.12.
1 parent 4013539 commit 9c65cdf

File tree

16 files changed

+26
-17
lines changed

16 files changed

+26
-17
lines changed

AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
[assembly: AssemblyProduct("Fusion Programming Language")]
55
[assembly: AssemblyCopyright("Copyright © Piotr Fusik 2011-2025")]
66
[assembly: ComVisible(false)]
7-
[assembly: AssemblyVersion("3.2.11.0")]
8-
[assembly: AssemblyFileVersion("3.2.11.0")]
7+
[assembly: AssemblyVersion("3.2.12.0")]
8+
[assembly: AssemblyFileVersion("3.2.12.0")]

Fut.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ else if (arg.equals("--help")) {
215215
return;
216216
}
217217
else if (arg.equals("--version")) {
218-
System.out.println("Fusion Transpiler 3.2.11 (Java)");
218+
System.out.println("Fusion Transpiler 3.2.12 (Java)");
219219
return;
220220
}
221221
else if (arg.length() == 2 && i + 1 < args.length) {

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 3.2.11
1+
VERSION = 3.2.12
22

33
prefix := /usr/local
44
bindir = $(prefix)/bin

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
fut (3.2.12-1) UNRELEASED; urgency=low
2+
3+
* New release.
4+
5+
-- Piotr Fusik <[email protected]> Sat, 19 Jul 2025 16:46:20 +0200
6+
17
fut (3.2.11-1) UNRELEASED; urgency=low
28

39
* New release.

doc/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The command-line transpiler `fut` runs on Windows, macOS and Linux.
66

7-
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.2.11)
7+
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.2.12)
88
or [build from sources](building-fut.md).
99

1010
## Syntax highlighting

editors/vs/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.11" Language="en-US" Publisher="Fusion Programming Language" />
4+
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.12" Language="en-US" Publisher="Fusion Programming Language" />
55
<DisplayName>Fusion</DisplayName>
66
<Description xml:space="preserve">A Visual Studio extension with syntax highlighting for the Fusion programming language.</Description>
7-
<MoreInfo>http://github.com/fusionlanguage/fut</MoreInfo>
7+
<MoreInfo>https://github.com/fusionlanguage/fut</MoreInfo>
88
<License>LICENSE</License>
99
<Icon>fu-logo.png</Icon>
1010
<PreviewImage>fu-logo.png</PreviewImage>

editors/vscode/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 3.2.11
1+
VERSION = 3.2.12
22

33
run: fusion-$(VERSION).vsix
44
'$(LOCALAPPDATA)\Programs\Microsoft VS Code\bin\code' --extensionDevelopmentPath=$(abspath .)

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fusion",
3-
"version": "3.2.11",
3+
"version": "3.2.12",
44
"publisher": "fusionlanguage",
55
"license": "MIT",
66
"displayName": "Fusion",

fut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ int main(int argc, char **argv)
200200
return 0;
201201
}
202202
else if (strcmp(arg, "--version") == 0) {
203-
puts("Fusion Transpiler 3.2.11 (C++)");
203+
puts("Fusion Transpiler 3.2.12 (C++)");
204204
return 0;
205205
}
206206
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {

fut.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public static int Main(string[] args)
187187
return 0;
188188
}
189189
else if (arg == "--version") {
190-
Console.WriteLine("Fusion Transpiler 3.2.11 (C#)");
190+
Console.WriteLine("Fusion Transpiler 3.2.12 (C#)");
191191
return 0;
192192
}
193193
else if (arg.Length == 2 && i + 1 < args.Length) {

0 commit comments

Comments
 (0)