summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Fusik <fox@scene.pl>2023-01-30 08:30:16 +0100
committerPiotr Fusik <fox@scene.pl>2023-01-30 08:30:16 +0100
commit53b5f5512771547328b28a7d1ad2afa8fdc05595 (patch)
treefbf372e88b435b4437b11ab2dd1067aab8bc0363
parent343dc49de0ac95fe141fec7e91dd5d2cd6779f89 (diff)
[release] 2.1.1.cito-2.1.1
-rw-r--r--AssemblyInfo.cs4
-rw-r--r--CiTo.cs2
-rw-r--r--cito.csproj2
-rw-r--r--editors/vscode/Makefile2
-rw-r--r--editors/vscode/package.json2
-rw-r--r--hello.ci2
6 files changed, 7 insertions, 7 deletions
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
index cdcfba4..60ba529 100644
--- a/AssemblyInfo.cs
+++ b/AssemblyInfo.cs
@@ -5,5 +5,5 @@ using System.Runtime.InteropServices;
[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 03bc463..eb7dd94 100644
--- a/CiTo.cs
+++ b/CiTo.cs
@@ -109,7 +109,7 @@ public static class CiTo
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 c94f8f5..2b93d23 100644
--- a/cito.csproj
+++ b/cito.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <Version>2.1.0</Version>
+ <Version>2.1.1</Version>
<Description>Transpiles the Ć programming language to C, C++, C#, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.</Description>
<PackageTags>Programming Language;Transpiler</PackageTags>
<PackageProjectUrl>https://github.com/pfusik/cito</PackageProjectUrl>
diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile
index f0960d6..69069e2 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 1f5da63..e32dac9 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 a080084..a71619f 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, ...).