Skip to content

Commit

Permalink
[release] 2.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Jan 30, 2023
1 parent 343dc49 commit 53b5f55
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion CiTo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 1 addition & 1 deletion cito.csproj
Original file line number Diff line number Diff line change
@@ -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>
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 = 2.1.0
VERSION = 2.1.1

run: ci-$(VERSION).vsix
'$(LOCALAPPDATA)\Programs\Microsoft VS Code\bin\code' --extensionDevelopmentPath=$(abspath .)
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ci",
"version": "2.1.0",
"version": "2.1.1",
"publisher": "pfusik",
"license": "MIT",
"displayName": "Ć",
Expand Down
2 changes: 1 addition & 1 deletion hello.ci
Original file line number Diff line number Diff line change
@@ -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, ...).
Expand Down

0 comments on commit 53b5f55

Please sign in to comment.