Skip to content

Commit

Permalink
ezr² v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Uralstech committed Nov 1, 2024
1 parent 1c4b705 commit 1218337
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 deletions src/EzrSquared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<SelfContained>True</SelfContained>
<IsPublishable>True</IsPublishable>

<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">True</IsAotCompatible>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -27,8 +27,8 @@

<Title>ezr² Portable Library</Title>
<Description>The ezr² programming language, as a portable class library! This can be used to integrate ezr² as an embedded scripting language in your apps, websites and more!</Description>
<Version>0.7.0</Version>

<PackageVersion>0.8.0-unstable</PackageVersion>

<Authors>Udayshankar Ravikumar</Authors>
<Company>URAV ADVANCED LEARNING SYSTEMS PRIVATE LIMITED</Company>
Expand All @@ -38,11 +38,13 @@

<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>

<PackageProjectUrl>https://uralstech.github.io/ezrSquared/</PackageProjectUrl>
<PackageTags>programming language;portable;embeddable;compact;interpreted</PackageTags>
<PackageOutputPath>..\Binaries\ezrSquared\Package</PackageOutputPath>
<PackageReleaseNotes>See https://github.com/Uralstech/ezrSquared/releases.</PackageReleaseNotes>

<RepositoryUrl>https://github.com/uralstech/ezrSquared</RepositoryUrl>
<RepositoryBranch>ezrSquared-re</RepositoryBranch>

<PackageIcon>Icon (256x256).png</PackageIcon>

Expand Down Expand Up @@ -70,7 +72,7 @@
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
<PolySharpIncludeRuntimeSupportedAttributes>True</PolySharpIncludeRuntimeSupportedAttributes>
<DefineConstants>MULTI_TARGETING_SUPPORT_ATTRIBUTES</DefineConstants>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Shell/EzrShell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace EzrSquaredCli;
/// </summary>
internal class Shell
{
private const string Version = "0.7.0";
private const string Version = "0.8.0";

private static bool s_showLexerOutput;
private static bool s_showParserOutput;
Expand Down
2 changes: 1 addition & 1 deletion src/Shell/InstallerSrc/ezrSquared 32-bit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "environment.iss"

#define MyAppName "ezr² Shell"
#define MyAppVersion "0.7.0"
#define MyAppVersion "0.8.0"
#define MyAppPublisher "Urav Advanced Learning Systems Pvt Ltd"
#define MyAppURL "https://uralstech.github.io/ezrSquared/"
#define MyAppExeName "ezrSquared.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/Shell/InstallerSrc/ezrSquared 64-bit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "environment.iss"

#define MyAppName "ezr² Shell"
#define MyAppVersion "0.7.0"
#define MyAppVersion "0.8.0"
#define MyAppPublisher "Urav Advanced Learning Systems Pvt Ltd"
#define MyAppURL "https://uralstech.github.io/ezrSquared/"
#define MyAppExeName "ezrSquared.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/Shell/Shell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Title>The ezrSquared Command Line Interface</Title>
<Description>The Command Line Interface for the ezrSquared programming language.</Description>

<Version>0.7.0</Version>
<Version>0.8.0</Version>

<Authors>Udayshankar Ravikumar</Authors>
<Company>URAV ADVANCED LEARNING SYSTEMS PRIVATE LIMITED</Company>
Expand Down

0 comments on commit 1218337

Please sign in to comment.