bugfix: floating point precision; added strutils.formatFloat

This commit is contained in:
Araq
2011-01-09 14:59:49 +01:00
parent 064417fc5a
commit f31eab8536
2 changed files with 4 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
#
#
# Nimrod's Runtime Library
# (c) Copyright 2010 Andreas Rumpf
# (c) Copyright 2011 Andreas Rumpf
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.

View File

@@ -19,6 +19,8 @@ Bugfixes
- Bugfix: niminst: ``nimrod`` is not default dir for *every* project.
- Bugfix: Multiple yield statements in iterators did not cause local vars to be
copied.
- Bugfix: The compiler does not emit very inaccurate floating point literals
anymore.
Additions
@@ -34,6 +36,7 @@ Additions
- Source code filters are now properly documented.
- Added ``emit`` pragma for direct code generator control.
- Additional operations were added to the ``complex`` module.
- Added ``strutils.formatFloat``, ``strutils.formatBiggestFloat``.
2010-10-20 Version 0.8.10 released