From b32671af79fd1bba4896a3fc6f8c5ca4a8631140 Mon Sep 17 00:00:00 2001 From: litlighilit Date: Fri, 27 Dec 2024 18:33:14 +0800 Subject: [PATCH] bump-version: 0.9.5 with changelog --- changelogs/changelog_0_9_5.md | 33 +++++++++++++++++++++++++++++++++ src/pylib/versionInfo.nim | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 changelogs/changelog_0_9_5.md diff --git a/changelogs/changelog_0_9_5.md b/changelogs/changelog_0_9_5.md new file mode 100644 index 000000000..9bef2e2c6 --- /dev/null +++ b/changelogs/changelog_0_9_5.md @@ -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 diff --git a/src/pylib/versionInfo.nim b/src/pylib/versionInfo.nim index 584d956e2..cbd2079c0 100644 --- a/src/pylib/versionInfo.nim +++ b/src/pylib/versionInfo.nim @@ -2,7 +2,7 @@ const Major* = 0 Minor* = 9 - Patch* = 4 + Patch* = 5 ReleaseLevel* = "alpha" Serial* = 0