2.2 KiB
v1.6.x - yyyy-mm-dd
Standard library additions and changes
-
Make
{.requiresInit.}pragma to work fordistincttypes. -
Added a macros
enumLenfor returning the number of items in an enum to thetypetraits.nimmodule. -
preludenow works with the JavaScript target. -
Added
almostEqualinmathfor comparing two float values using a machine epsilon. -
The JSON module can now handle integer literals and floating point literals of arbitrary length and precision. Numbers that do not fit the underlying
BiggestIntorBiggestFloatfields are kept as string literals and one can use external BigNum libraries to handle these. TheparseFloatfamily of functions also has now optionalrawIntegersandrawFloatsparameters that can be used to enforce that all integer or float literals remain in the "raw" string form so that client code can easily treat small and large numbers uniformly. -
Added
randStatetemplate that exposes the default random number generator. Useful for library authors. -
Added std/enumutils module containing
genEnumCaseStmtmacro that generates case statement to parse string to enum. -
Removed deprecated
iupmodule from stdlib, it has already moved to nimble. -
nodejs now supports osenv:
getEnv,putEnv,envPairs,delEnv,existsEnv -
doAssertRaisesnow correctly handles foreign exceptions. -
Added
asyncdispatch.activeDescriptorsthat returns the number of currently active async event handles/file descriptors
Language changes
-
nimscriptnow handlesexcept Exception as e -
The
cstringdoesn't support[]=operator in JS backend.
Compiler changes
-
Added
--declaredlocsto show symbol declaration location in messages. -
Source+Edit links now appear on top of every docgen'd page when
nim doc --git.url:url ...is given. -
Added
nim --eval:cmdto evaluate a command directly, seenim --help.
Tool changes
- The rst parser now supports markdown table syntax.
Known limitations:
- cell alignment is not supported, i.e. alignment annotations in a delimiter
row (
:---,:--:,---:) are ignored, - every table row must start with
|, e.g.| cell 1 | cell 2 |.
- cell alignment is not supported, i.e. alignment annotations in a delimiter
row (