Skip to content

Commit edf77b3

Browse files
committed
[release] 3.2.7.
1 parent b76160f commit edf77b3

File tree

16 files changed

+27
-17
lines changed

16 files changed

+27
-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-2024")]
66
[assembly: ComVisible(false)]
7-
[assembly: AssemblyVersion("3.2.6.0")]
8-
[assembly: AssemblyFileVersion("3.2.6.0")]
7+
[assembly: AssemblyVersion("3.2.7.0")]
8+
[assembly: AssemblyFileVersion("3.2.7.0")]

Fut.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ else if (arg.equals("--help")) {
219219
return;
220220
}
221221
else if (arg.equals("--version")) {
222-
System.out.println("Fusion Transpiler 3.2.6 (Java)");
222+
System.out.println("Fusion Transpiler 3.2.7 (Java)");
223223
return;
224224
}
225225
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.6
1+
VERSION = 3.2.7
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.7-1) UNRELEASED; urgency=low
2+
3+
* New release.
4+
5+
-- Piotr Fusik <piotr@fusion-lang.org> Wed, 9 Oct 2024 15:19:01 +0200
6+
17
fut (3.2.6-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.6)
7+
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.2.7)
88
or [build from sources](building-fut.md).
99

1010
## Syntax highlighting

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.6" Language="en-US" Publisher="Fusion Programming Language" />
4+
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.7" 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>http://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.6
1+
VERSION = 3.2.7
22

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

editors/vscode/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ A Visual Studio Code extension for the [Fusion programming language](https://fus
99
* Hovers
1010
* Snippets
1111

12-
Fusion is a language designed to be translated automatically to
13-
C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.
12+
Fusion lets you implement reusable components (libraries) for
13+
C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C,
14+
all from single codebase.

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.6",
3+
"version": "3.2.7",
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
@@ -204,7 +204,7 @@ int main(int argc, char **argv)
204204
return 0;
205205
}
206206
else if (strcmp(arg, "--version") == 0) {
207-
puts("Fusion Transpiler 3.2.6 (C++)");
207+
puts("Fusion Transpiler 3.2.7 (C++)");
208208
return 0;
209209
}
210210
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {

0 commit comments

Comments
 (0)