development version is 0.11.1

This commit is contained in:
Araq
2015-05-02 23:52:24 +02:00
parent 0f35a997dd
commit c6605d3d50
3 changed files with 23 additions and 8 deletions

View File

@@ -1535,7 +1535,7 @@ const
NimMinor*: int = 11
## is the minor number of Nim's version.
NimPatch*: int = 0
NimPatch*: int = 1
## is the patch number of Nim's version.
NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch

View File

@@ -1,14 +1,14 @@
version 0.10.4
version 0.11.2
==============
version 0.10.6 (RC1?)
=====================
- The remaining bugs of the lambda lifting pass that is responsible to enable
closures and closure iterators need to be fixed.
- ``concept`` needs to be refined, a nice name for the feature is not enough.
- Destructors need to be refined.
- make '--implicitStatic:on' the default; then we can also clean up the
'static[T]' mess in the compiler!
- finish 'parallel' or mark as experimental
- Finish the implementation of the 'parallel' statement.
- Deprecate ``immediate`` for templates and macros
- special case varargs[untyped] and varargs[typed]
- make 'nil' work for 'add':

View File

@@ -2,6 +2,21 @@
News
====
..
2015-05-05 Version 0.11.2 released
==================================
Changes affecting backwards compatibility
-----------------------------------------
Language Additions
------------------
Bugfixes
--------
2015-04-30 Version 0.11.0 released
==================================