summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Fusik <fox@scene.pl>2023-03-13 14:29:01 +0100
committerPiotr Fusik <fox@scene.pl>2023-03-13 14:35:14 +0100
commit5087739008a4c3c44a56c591a6d1e59e0c007272 (patch)
treedee49b932a37816a9957e7a8e4364a0227d21035
parent5e8c27d7b62c33adbc23a6289e4e89772f49515f (diff)
[release] 2.2.0.cito-2.2.0
-rw-r--r--AssemblyInfo.cs4
-rw-r--r--CiTo.cs2
-rw-r--r--cito.csproj2
-rw-r--r--doc/dotnet-tool.md3
-rw-r--r--editors/vscode/Makefile2
-rw-r--r--editors/vscode/package.json2
6 files changed, 8 insertions, 7 deletions
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
index eddbbbd..2e1dd37 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.2.0")]
-[assembly: AssemblyFileVersion("2.1.2.0")]
+[assembly: AssemblyVersion("2.2.0.0")]
+[assembly: AssemblyFileVersion("2.2.0.0")]
diff --git a/CiTo.cs b/CiTo.cs
index ab0caf3..fff131a 100644
--- a/CiTo.cs
+++ b/CiTo.cs
@@ -111,7 +111,7 @@ public static class CiTo
Usage();
return 0;
case "--version":
- Console.WriteLine("cito 2.1.2");
+ Console.WriteLine("cito 2.2.0");
return 0;
case "-l":
lang = args[++i];
diff --git a/cito.csproj b/cito.csproj
index 6881e65..bad8dc6 100644
--- a/cito.csproj
+++ b/cito.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <Version>2.1.2</Version>
+ <Version>2.2.0</Version>
<Description>Transpiles the Ć programming language to C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.</Description>
<PackageTags>Programming Language;Transpiler</PackageTags>
<PackageProjectUrl>https://github.com/pfusik/cito</PackageProjectUrl>
diff --git a/doc/dotnet-tool.md b/doc/dotnet-tool.md
index c90fdfd..991d72d 100644
--- a/doc/dotnet-tool.md
+++ b/doc/dotnet-tool.md
@@ -1,5 +1,5 @@
Ć is a programming language which can be translated automatically to
-C, C++, C#, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.
+C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.
Instead of writing code in all these languages, you can write it once in Ć:
```csharp
@@ -17,6 +17,7 @@ Then translate into target languages using `cito` on the command line:
cito -o hello.c hello.ci
cito -o hello.cpp hello.ci
cito -o hello.cs hello.ci
+cito -o hello.d hello.ci
cito -o HelloCi.java hello.ci # Java enforces filenames for public classes
cito -o hello.js hello.ci
cito -o hello.py hello.ci
diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile
index 7336059..d425121 100644
--- a/editors/vscode/Makefile
+++ b/editors/vscode/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.1.2
+VERSION = 2.2.0
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 455b535..ec0afee 100644
--- a/editors/vscode/package.json
+++ b/editors/vscode/package.json
@@ -1,6 +1,6 @@
{
"name": "ci",
- "version": "2.1.2",
+ "version": "2.2.0",
"publisher": "pfusik",
"license": "MIT",
"displayName": "Ć",