Skip to content

Commit

Permalink
[release] 3.2.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Dec 30, 2024
1 parent 4453ffd commit b5698d8
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 19 deletions.
4 changes: 2 additions & 2 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
[assembly: AssemblyProduct("Fusion Programming Language")]
[assembly: AssemblyCopyright("Copyright © Piotr Fusik 2011-2024")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("3.2.7.0")]
[assembly: AssemblyFileVersion("3.2.7.0")]
[assembly: AssemblyVersion("3.2.8.0")]
[assembly: AssemblyFileVersion("3.2.8.0")]
2 changes: 1 addition & 1 deletion Fut.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ else if (arg.equals("--help")) {
return;
}
else if (arg.equals("--version")) {
System.out.println("Fusion Transpiler 3.2.7 (Java)");
System.out.println("Fusion Transpiler 3.2.8 (Java)");
return;
}
else if (arg.length() == 2 && i + 1 < args.length) {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 3.2.7
VERSION = 3.2.8

prefix := /usr/local
bindir = $(prefix)/bin
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fut (3.2.8-1) UNRELEASED; urgency=low

* New release.

-- Piotr Fusik <[email protected]> Mon, 30 Dec 2024 19:44:43 +0100

fut (3.2.7-1) UNRELEASED; urgency=low

* New release.
Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.7)
Download the [release](https://github.com/fusionlanguage/fut/releases/tag/fut-3.2.8)
or [build from sources](building-fut.md).

## Syntax highlighting
Expand Down
4 changes: 2 additions & 2 deletions editors/vs/fusion-vs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.11.40262" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.11.435">
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.12.40392" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.12.2069">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion editors/vs/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.7" Language="en-US" Publisher="Fusion Programming Language" />
<Identity Id="fusionlanguage.fusion-vs" Version="3.2.8" Language="en-US" Publisher="Fusion Programming Language" />
<DisplayName>Fusion</DisplayName>
<Description xml:space="preserve">A Visual Studio extension with syntax highlighting for the Fusion programming language.</Description>
<MoreInfo>http://github.com/fusionlanguage/fut</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 3.2.7
VERSION = 3.2.8

run: fusion-$(VERSION).vsix
'$(LOCALAPPDATA)\Programs\Microsoft VS Code\bin\code' --extensionDevelopmentPath=$(abspath .)
Expand Down
4 changes: 2 additions & 2 deletions editors/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fusion",
"version": "3.2.7",
"version": "3.2.8",
"publisher": "fusionlanguage",
"license": "MIT",
"displayName": "Fusion",
Expand Down Expand Up @@ -63,6 +63,6 @@
},
"devDependencies": {
"@types/vscode": "^1.0.0",
"typescript": "^5.6.3"
"typescript": "^5.7.2"
}
}
2 changes: 1 addition & 1 deletion fut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ int main(int argc, char **argv)
return 0;
}
else if (strcmp(arg, "--version") == 0) {
puts("Fusion Transpiler 3.2.7 (C++)");
puts("Fusion Transpiler 3.2.8 (C++)");
return 0;
}
else if (arg[1] != '\0' && arg[2] == '\0' && i + 1 < argc) {
Expand Down
2 changes: 1 addition & 1 deletion fut.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public static int Main(string[] args)
return 0;
}
else if (arg == "--version") {
Console.WriteLine("Fusion Transpiler 3.2.7 (C#)");
Console.WriteLine("Fusion Transpiler 3.2.8 (C#)");
return 0;
}
else if (arg.Length == 2 && i + 1 < args.Length) {
Expand Down
2 changes: 1 addition & 1 deletion fut.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ for (let i = 2; i < process.argv.length; i++) {
process.exit(0);
}
else if (arg == "--version") {
console.log("Fusion Transpiler 3.2.7 (Node.js)");
console.log("Fusion Transpiler 3.2.8 (Node.js)");
process.exit(0);
}
else if (i + 1 < process.argv.length) {
Expand Down
5 changes: 4 additions & 1 deletion fut.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: fut
Version: 3.2.7
Version: 3.2.8
Release: 1
Summary: Fusion Transpiler
License: GPLv3+
Expand All @@ -24,6 +24,9 @@ make DESTDIR=%{buildroot} prefix=%{_prefix} install
%{_bindir}/fut

%changelog
* Mon Dec 30 2024 Piotr Fusik <[email protected]>
- 3.2.8-1

* Wed Oct 9 2024 Piotr Fusik <[email protected]>
- 3.2.7-1

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fut-js",
"private": true,
"version": "3.1.0-development",
"version": "3.2.8-development",
"repository": "https://github.com/fusionlanguage/fut.git",
"author": "Piotr Fusik",
"type": "module"
Expand Down
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fut-test-ts",
"private": true,
"version": "3.2.7-development",
"version": "3.2.8-development",
"repository": "https://github.com/fusionlanguage/fut.git",
"author": "Piotr Fusik",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion win32/setup/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 3.2.7
VERSION = 3.2.8
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
Expand Down
2 changes: 1 addition & 1 deletion win32/setup/fut.wxs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package Name="Fusion Transpiler" Version="3.2.7" Manufacturer="Piotr Fusik" Language="1033" UpgradeCode="0c3e3a72-72a5-4426-a1ce-f3ebd49fc8e3">
<Package Name="Fusion Transpiler" Version="3.2.8" 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">
Expand Down

0 comments on commit b5698d8

Please sign in to comment.