summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Fusik <piotr@fusion-lang.org>2023-12-18 18:26:40 +0100
committerPiotr Fusik <piotr@fusion-lang.org>2023-12-18 18:26:40 +0100
commitccba725933a0c317e83646cae552932dd54dd458 (patch)
treeddee7220251c2b8308f7f3fc06dde44a5315ba01
parent804877a9bb30630992d45b65e19dc80a94da7fc5 (diff)
[release] 3.1.1.fut-3.1.1
-rw-r--r--AssemblyInfo.cs4
-rw-r--r--Fut.java2
-rw-r--r--debian/changelog6
-rw-r--r--doc/getting-started.md2
-rw-r--r--editors/vscode/Makefile2
-rw-r--r--editors/vscode/package.json2
-rw-r--r--fut.cpp2
-rw-r--r--fut.cs2
-rw-r--r--fut.js2
-rw-r--r--fut.spec5
-rw-r--r--hello.fu2
-rw-r--r--test/package.json2
-rw-r--r--win32/setup/Makefile2
-rw-r--r--win32/setup/fut.wxs2
14 files changed, 23 insertions, 14 deletions
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
index fe7cf66..663d9c7 100644
--- a/AssemblyInfo.cs
+++ b/AssemblyInfo.cs
@@ -4,5 +4,5 @@ using System.Runtime.InteropServices;
[assembly: AssemblyProduct("Fusion Programming Language")]
[assembly: AssemblyCopyright("Copyright © Piotr Fusik 2011-2023")]
[assembly: ComVisible(false)]
-[assembly: AssemblyVersion("3.1.0.0")]
-[assembly: AssemblyFileVersion("3.1.0.0")]
+[assembly: AssemblyVersion("3.1.1.0")]
+[assembly: AssemblyFileVersion("3.1.1.0")]
diff --git a/Fut.java b/Fut.java
index 17c9b80..dc78d3f 100644
--- a/Fut.java
+++ b/Fut.java
@@ -223,7 +223,7 @@ public class Fut
return;
}
else if (arg.equals("--version")) {
- System.out.println("Fusion Transpiler 3.1.0 (Java)");
+ System.out.println("Fusion Transpiler 3.1.1 (Java)");
return;
}
else if (arg.length() == 2 && i + 1 < args.length) {
diff --git a/debian/changelog b/debian/changelog
index 7fe3c28..eb13f39 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+fut (3.1.1-1) UNRELEASED; urgency=low
+
+ * New release.
+
+ -- Piotr Fusik <piotr@fusion-lang.org> Mon, 18 Dec 2023 18:19:57 +0100
+
fut (3.1.0-1) UNRELEASED; urgency=low
* New release.
diff --git a/doc/getting-started.md b/doc/getting-started.md
index 66c44d7..9180827 100644
--- a/doc/getting-started.md
+++ b/doc/getting-started.md
@@ -4,7 +4,7 @@
The command-line transpiler `fut` runs on Windows, macOS and Linux.
-Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.1.0)
+Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.1.1)
or [build from sources](building-fut.md).
## Syntax highlighting
diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile
index b6aad7d..e509f41 100644
--- a/editors/vscode/Makefile
+++ b/editors/vscode/Makefile
@@ -1,4 +1,4 @@
-VERSION = 3.1.0
+VERSION = 3.1.1
run: fusion-$(VERSION).vsix
'$(LOCALAPPDATA)\Programs\Microsoft VS Code\bin\code' --extensionDevelopmentPath=$(abspath .)
diff --git a/editors/vscode/package.json b/editors/vscode/package.json
index 3bb2725..75af697 100644
--- a/editors/vscode/package.json
+++ b/editors/vscode/package.json
@@ -1,6 +1,6 @@
{
"name": "fusion",
- "version": "3.1.0",
+ "version": "3.1.1",
"publisher": "fusionlanguage",
"license": "MIT",
"displayName": "Fusion",
diff --git a/fut.cpp b/fut.cpp
index 35cf878..59d591f 100644
--- a/fut.cpp
+++ b/fut.cpp
@@ -210,7 +210,7 @@ int main(int argc, char **argv)
return 0;
}
else if (strcmp(arg, "--version") == 0) {
- puts("Fusion Transpiler 3.1.0 (C++)");
+ puts("Fusion Transpiler 3.1.1 (C++)");
return 0;
}
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {
diff --git a/fut.cs b/fut.cs
index db736f4..d7c857a 100644
--- a/fut.cs
+++ b/fut.cs
@@ -193,7 +193,7 @@ public static class Fut
return 0;
}
else if (arg == "--version") {
- Console.WriteLine("Fusion Transpiler 3.1.0 (C#)");
+ Console.WriteLine("Fusion Transpiler 3.1.1 (C#)");
return 0;
}
else if (arg.Length == 2 && i + 1 < args.Length) {
diff --git a/fut.js b/fut.js
index a96ada9..5f2c1b2 100644
--- a/fut.js
+++ b/fut.js
@@ -227,7 +227,7 @@ for (let i = 2; i < process.argv.length; i++) {
process.exit(0);
}
else if (arg == "--version") {
- console.log("Fusion Transpiler 3.1.0 (Node.js)");
+ console.log("Fusion Transpiler 3.1.1 (Node.js)");
process.exit(0);
}
else if (i + 1 < process.argv.length) {
diff --git a/fut.spec b/fut.spec
index b07fcb6..7fc6d64 100644
--- a/fut.spec
+++ b/fut.spec
@@ -1,5 +1,5 @@
Name: fut
-Version: 3.1.0
+Version: 3.1.1
Release: 1
Summary: Fusion Transpiler
License: GPLv3+
@@ -24,6 +24,9 @@ make DESTDIR=%{buildroot} prefix=%{_prefix} install
%{_bindir}/fut
%changelog
+* Mon Dec 18 2023 Piotr Fusik <piotr@fusion-lang.org>
+- 3.1.1-1
+
* Thu Nov 16 2023 Piotr Fusik <piotr@fusion-lang.org>
- 3.1.0-1
diff --git a/hello.fu b/hello.fu
index 7d9f2ec..0a4e57a 100644
--- a/hello.fu
+++ b/hello.fu
@@ -1,7 +1,7 @@
public static class HelloFu
{
public const int VersionMajor = 3;
- public const int VersionMinor = 0;
+ public const int VersionMinor = 1;
public const string Version = $"{VersionMajor}.{VersionMinor}";
/// Returns `true` if and only if `x` is a power of 2 (1, 2, 4, 8, 16, ...).
diff --git a/test/package.json b/test/package.json
index b1d4948..1c22d67 100644
--- a/test/package.json
+++ b/test/package.json
@@ -1,7 +1,7 @@
{
"name": "fut-test-ts",
"private": true,
- "version": "3.1.0-development",
+ "version": "3.1.1-development",
"repository": "https://github.com/fusionlanguage/fut.git",
"author": "Piotr Fusik",
"dependencies": {
diff --git a/win32/setup/Makefile b/win32/setup/Makefile
index 3fc78a0..77c1a4b 100644
--- a/win32/setup/Makefile
+++ b/win32/setup/Makefile
@@ -1,4 +1,4 @@
-VERSION = 3.1.0
+VERSION = 3.1.1
DO_SIGN = signtool sign -d "Fusion Transpiler $(VERSION)" -n "Open Source Developer, Piotr Fusik" -tr http://time.certum.pl -fd sha256 -td sha256 $^ && touch $@
signed-msi: fut-$(VERSION)-win64.msi
diff --git a/win32/setup/fut.wxs b/win32/setup/fut.wxs
index 3da38ce..a8fe3a9 100644
--- a/win32/setup/fut.wxs
+++ b/win32/setup/fut.wxs
@@ -1,5 +1,5 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
- <Package Name="Fusion Transpiler" Version="3.1.0" Manufacturer="Piotr Fusik" Language="1033" UpgradeCode="0c3e3a72-72a5-4426-a1ce-f3ebd49fc8e3">
+ <Package Name="Fusion Transpiler" Version="3.1.1" Manufacturer="Piotr Fusik" Language="1033" UpgradeCode="0c3e3a72-72a5-4426-a1ce-f3ebd49fc8e3">
<MajorUpgrade DowngradeErrorMessage="Newer version of Fusion Transpiler is already installed!" />
<Media Id="1" Cabinet="fut.cab" CompressionLevel="high" EmbedCab="yes" />
<StandardDirectory Id="ProgramFiles6432Folder">