Skip to content

Commit 9e13e77

Browse files
committed
[release] 3.3.0.
1 parent 5ebbeb3 commit 9e13e77

17 files changed

Lines changed: 26 additions & 17 deletions

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-2026")]
66
[assembly: ComVisible(false)]
7-
[assembly: AssemblyVersion("3.2.14.0")]
8-
[assembly: AssemblyFileVersion("3.2.14.0")]
7+
[assembly: AssemblyVersion("3.3.0.0")]
8+
[assembly: AssemblyFileVersion("3.3.0.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.14 (Java)");
218+
System.out.println("Fusion Transpiler 3.3.0 (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.14
1+
VERSION = 3.3.0
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.3.0-1) UNRELEASED; urgency=low
2+
3+
* New release.
4+
5+
-- Piotr Fusik <piotr@fusion-lang.org> Sat, 11 Apr 2026 17:12:17 +0200
6+
17
fut (3.2.14-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.14)
7+
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.3.0)
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.2120">
35+
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.14.2142">
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.14" Language="en-US" Publisher="Fusion Programming Language" />
4+
<Identity Id="fusionlanguage.fusion-vs" Version="3.3.0" 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.14
1+
VERSION = 3.3.0
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.14",
3+
"version": "3.3.0",
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.14 (C++)");
203+
puts("Fusion Transpiler 3.3.0 (C++)");
204204
return 0;
205205
}
206206
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {

0 commit comments

Comments
 (0)