diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs index cdcfba4e..60ba5292 100644 --- a/AssemblyInfo.cs +++ b/AssemblyInfo.cs @@ -5,5 +5,5 @@ [assembly: AssemblyProduct("Ci Programming Language")] [assembly: AssemblyCopyright("Copyright © Piotr Fusik 2011-2023")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("2.1.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.1.1.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] diff --git a/CiTo.cs b/CiTo.cs index 03bc4638..eb7dd943 100644 --- a/CiTo.cs +++ b/CiTo.cs @@ -109,7 +109,7 @@ public static int Main(string[] args) Usage(); return 0; case "--version": - Console.WriteLine("cito 2.1.0"); + Console.WriteLine("cito 2.1.1"); return 0; case "-l": lang = args[++i]; diff --git a/cito.csproj b/cito.csproj index c94f8f5c..2b93d23f 100644 --- a/cito.csproj +++ b/cito.csproj @@ -1,7 +1,7 @@  - 2.1.0 + 2.1.1 Transpiles the Ć programming language to C, C++, C#, Java, JavaScript, Python, Swift, TypeScript and OpenCL C. Programming Language;Transpiler https://github.com/pfusik/cito diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile index f0960d6b..69069e2f 100644 --- a/editors/vscode/Makefile +++ b/editors/vscode/Makefile @@ -1,4 +1,4 @@ -VERSION = 2.1.0 +VERSION = 2.1.1 run: ci-$(VERSION).vsix '$(LOCALAPPDATA)\Programs\Microsoft VS Code\bin\code' --extensionDevelopmentPath=$(abspath .) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 1f5da635..e32dac96 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -1,6 +1,6 @@ { "name": "ci", - "version": "2.1.0", + "version": "2.1.1", "publisher": "pfusik", "license": "MIT", "displayName": "Ć", diff --git a/hello.ci b/hello.ci index a0800843..a71619fb 100644 --- a/hello.ci +++ b/hello.ci @@ -1,7 +1,7 @@ public static class HelloCi { public const int VersionMajor = 2; - 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, ...).