Skip to content

Commit 029537a

Browse files
committed
[release] 3.2.13.
1 parent 361601d commit 029537a

File tree

17 files changed

+27
-18
lines changed

17 files changed

+27
-18
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.12.0")]
8-
[assembly: AssemblyFileVersion("3.2.12.0")]
7+
[assembly: AssemblyVersion("3.2.13.0")]
8+
[assembly: AssemblyFileVersion("3.2.13.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.12 (Java)");
218+
System.out.println("Fusion Transpiler 3.2.13 (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.12
1+
VERSION = 3.2.13
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.13-1) UNRELEASED; urgency=low
2+
3+
* New release.
4+
5+
-- Piotr Fusik <piotr@fusion-lang.org> Mon, 8 Sep 2025 07:28:37 +0200
6+
17
fut (3.2.12-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.12)
7+
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.2.13)
88
or [build from sources](building-fut.md).
99

1010
## Syntax highlighting

editors/vs/fusion-vs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333
<ItemGroup>
3434
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.14.40265" ExcludeAssets="runtime" />
35-
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.14.2094">
35+
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.14.2101">
3636
<PrivateAssets>all</PrivateAssets>
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3838
</PackageReference>

editors/vs/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.12" Language="en-US" Publisher="Fusion Programming Language" />
4+
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.13" 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>
77
<MoreInfo>https://github.com/fusionlanguage/fut</MoreInfo>

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.12
1+
VERSION = 3.2.13
22

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

editors/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fusion",
3-
"version": "3.2.12",
3+
"version": "3.2.13",
44
"publisher": "fusionlanguage",
55
"license": "MIT",
66
"displayName": "Fusion",
@@ -63,6 +63,6 @@
6363
},
6464
"devDependencies": {
6565
"@types/vscode": "^1.0.0",
66-
"typescript": "^5.8.3"
66+
"typescript": "^5.9.2"
6767
}
6868
}

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.12 (C++)");
203+
puts("Fusion Transpiler 3.2.13 (C++)");
204204
return 0;
205205
}
206206
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {

0 commit comments

Comments
 (0)