Skip to content

Commit

Permalink
ezr² RE v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Uralstech committed Nov 8, 2024
1 parent 39e58db commit 697750f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ CHANGELOG - What's new?
See the GitHub releases for more detailed info:
https://github.com/Uralstech/ezrSquared/releases

* ezr² RE - v0.11.1 [08-11-24]
* Fixed bug in C# compatibility wrappers where they won't wrap compliant methods and constructors.
* C# type wrappers should now fail when given abstract types.
* Improved PascalCase to snake_case converter even more.

* ezr² RE - v0.11.0 [08-11-24]
* [BREAKING CHANGE] The ezr² library is no longer officially AOT compatible.
* [BREAKING CHANGE] `EzrSharpCompatibilityWrapper.Validate` has been removed. Use `SharpAutoWrapperAttribute.ValidateMethod` instead.
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ out, you can download it from the [***releases page on GitHub***](https://github
* Run the installer and go through the installation.
<br/>

[![ezr² RE v0.11.0 for Windows x64](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.0_%28Windows_x64%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.0/ezrSquared.Shell.Setup.Win64.exe)
[![ezr² RE v0.11.0 for Windows x86](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.0_%28Windows_x86%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.0/ezrSquared.Shell.Setup.Win32.exe)
[![ezr² RE v0.11.1 for Windows x64](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.1_%28Windows_x64%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.1/ezrSquared.Shell.Setup.Win64.exe)
[![ezr² RE v0.11.1 for Windows x86](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.1_%28Windows_x86%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.1/ezrSquared.Shell.Setup.Win32.exe)

# [NuGet](#tab/REnuget)

You can use ezr² RE as a scripting language for your .NET apps by downloading it from NuGet!

[![ezr² RE on NuGet](https://img.shields.io/badge/ezr%C2%B2_RE_on_NuGet-32CD32?style=for-the-badge&logo=nuget&logoColor=white)](https://www.nuget.org/packages/ezrSquared)
[![ezr² RE v0.11.0 (.nupkg download)](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.0_%28.nupkg_download%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.0/ezrSquared.0.11.0-unstable.nupkg)
[![ezr² RE v0.11.1 (.nupkg download)](https://img.shields.io/badge/ezr%C2%B2_RE_v0.11.1_%28.nupkg_download%29-32CD32?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Uralstech/ezrSquared/releases/download/v0.11.1/ezrSquared.0.11.1-unstable.nupkg)

# [Other](#tab/REother)

Expand Down
2 changes: 1 addition & 1 deletion src/EzrSquared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<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>

<PackageVersion>0.11.0-unstable</PackageVersion>
<PackageVersion>0.11.1-unstable</PackageVersion>

<Authors>Udayshankar Ravikumar</Authors>
<Company>URAV ADVANCED LEARNING SYSTEMS PRIVATE LIMITED</Company>
Expand Down
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.11.0";
private const string Version = "0.11.1";

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.11.0"
#define MyAppVersion "0.11.1"
#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.11.0"
#define MyAppVersion "0.11.1"
#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.11.0</Version>
<Version>0.11.1</Version>

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

0 comments on commit 697750f

Please sign in to comment.