Skip to content

Commit

Permalink
Updated general info
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed May 18, 2021
1 parent 66ff35c commit 8b87178
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 2.0.0

- Added missing helpers and constants (#98)
- Added complex helpers (#97)
- Added complex numbers support (#96)
- Changed library target to .NET Standard 2 (#68)
- Changed application to run on .NET Core 3.1 (#68)

# 1.6.1

- Fixed `factorial` bug (#94)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2018 Florian Rappl
Copyright (c) 2016-2021 Florian Rappl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@

## Mages: Another Generalized Expression Simplifier

MAGES is the official successor to YAMP. It is a very simple, yet powerful, expression parser and interpreter. You can use MAGES to include a sophisticated, easy to customize, and lightweight scripting engine to your application.
MAGES is the official successor to [YAMP](https://github.com/FlorianRappl/YAMP). It is a very simple, yet powerful, expression parser and interpreter. You can use MAGES to include a sophisticated, easy to customize, and lightweight scripting engine to your application.

Among other applications, MAGES is used in [Microsoft's PowerToys](https://github.com/microsoft/PowerToys).

### Current Status

MAGES was just updated with support for complex numbers. Also, the build target and runtime has been updated to make use of modern possibilities.

### Previous Status

The first stable version has been released. The current version 1.6.0 contains an improved REPL. The library contains everything to perform lightweight scripting operations in C#. A [CodeProject article](http://www.codeproject.com/Articles/1108939/MAGES-Ultimate-Scripting-for-NET) about the library (also containing some background and performance comparisons) is also available.

### Installation
Expand Down Expand Up @@ -80,11 +86,23 @@ The rules of [semver](http://semver.org/) are our bread and butter. In short thi

Hence: Do not expect any breaking changes within the same major version.

## Sponsors

The following companies sponsored part of the development of MAGES.

<div style="display:flex;justify-content:space-evenly;align-items:center">
<img width="150" height="150" src="https://raw.githubusercontent.com/polytroper/polytroper.github.io/master/favicon.png">
<img width="200" height="200" src="https://smapiot.com/smapiot_green.03d1162a.svg">
<img width="200" height="200" src="https://www.omicron-lab.com/fileadmin/website/images/OMICRON-LAB.svg">
</div>

Thanks for all the support and trust in the project!

## License

The MIT License (MIT)

Copyright (c) 2016-2018 Florian Rappl
Copyright (c) 2016-2021 Florian Rappl

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
8 changes: 4 additions & 4 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
//------------------------------------------------------------------------------
using System.Reflection;

[assembly: AssemblyCompany("Polytrope")]
[assembly: AssemblyCompany("smapiot")]
[assembly: AssemblyProduct("Mages")]
[assembly: AssemblyVersion("1.6.0")]
[assembly: AssemblyFileVersion("1.6.0")]
[assembly: AssemblyCopyright("Copyright (c) 2018, Florian Rappl")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyCopyright("Copyright (c) 2021, Florian Rappl")]

0 comments on commit 8b87178

Please sign in to comment.