-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
862f44a
commit b32671a
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
# v0.9.5 - 2024-12-27 | ||
|
||
## Python Syntax | ||
- generics def | ||
- generics class | ||
- raise from statement | ||
|
||
## Fixes for inconsistence with Python | ||
- Python3.13 dedent doc string | ||
|
||
## Fixes | ||
- print: | ||
- js cannot compile | ||
- nimvm for non-NL `endl` now err over do nothing | ||
|
||
### Lib | ||
- array: | ||
- iter cannot compile | ||
- tobytes loop index starting fault (caused RangeDefect) | ||
|
||
## Feature additions | ||
### Lib | ||
- tempfile: `gettemp{dir,prefix}[b]` | ||
- newly added: | ||
- inspect: (Signature,etc not impl yet) | ||
- errno | ||
|
||
## Patches for Nim-compatibility | ||
- supports Nim 2.3.1 | ||
|
||
## deprecate | ||
- deprecate `newPyDictImpl` over `newPyDict`, to be removed since 0.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
const | ||
Major* = 0 | ||
Minor* = 9 | ||
Patch* = 4 | ||
Patch* = 5 | ||
|
||
ReleaseLevel* = "alpha" | ||
Serial* = 0 | ||
|