Releases: Rohansi/Mond
Releases · Rohansi/Mond
v0.8.0
v0.7.0
- Breaking: Dropped support for .NET 4.6
- Breaking: Made
MondValue
constructors private -- use the new ``MondValue` static builder methods instead - Strings are now written to bytecode files as length-prefixed UTF-8
- Added the
--wait
flag to the REPL which pauses scripts so you can connect a debugger
v0.6.4
v0.6.3
v0.6.2
v0.6.1
- Breaking:
MondRuntimeException
no longer overridesStackTrace
. The Mond stack trace is appended toMessage
instead, and is available independently with propertyMondStackTrace
. - Adds backtick operators which allow normal functions to be used as infix operators
- Fixes
Json.serialize
serializing numbers toInfinity
orNaN
. They will throw an error instead.
v0.6.0
- Breaking: Changes the implementation of user-defined operators:
global.__ops
was removed, operators are now local - Allow most operators to be used as functions, surround the operator in parenthesis to get its function
- Add
Function.getName()
- Add
__neq
,__gte
,__lt
,__lte
, and__hash
metamethods - Fixes a bug with array destructuring (#60)
- Add .NET 4.6 to target frameworks