mirror of https://github.com/KLayout/klayout.git
Preparations for release
This commit is contained in:
parent
bb635c3c59
commit
d9957be07f
10
Changelog
10
Changelog
|
|
@ -1,3 +1,13 @@
|
|||
0.29.10 (2024-12-03):
|
||||
* Bug: %GITHUB%/issues/1941 Crash with the navigator open
|
||||
* Bug: %GITHUB%/issues/1942 Syntax error in pyi stubs
|
||||
As a bonus, added defaults for Box#enlarge and Box#enlarged (dx, dy)
|
||||
* Bugfix: Partial mode snapping now is object first, then grid
|
||||
* Bugfix: Key bindings have not been properly read from the configuration file
|
||||
The change in the configuration string structure triggered an old bug:
|
||||
Toolbar buttons had a twofold configuration and only the last one was
|
||||
considered. Changing the order of the entries could spoil the configuration.
|
||||
|
||||
0.29.9 (2024-12-01):
|
||||
* Bug: %GITHUB%/issues/1907 Locking layouts against modification during recursive iteration of instances and shapes
|
||||
This prevents crashes in write-white-iterating scenarios
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
klayout (0.29.10-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
- See changelog
|
||||
|
||||
-- Matthias Köfferlein <matthias@koefferlein.de> Mon, 02 Dec 2024 22:23:47 +0100
|
||||
|
||||
klayout (0.29.9-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@
|
|||
# This script is sourced to define the main version parameters
|
||||
|
||||
# The main version
|
||||
KLAYOUT_VERSION="0.29.9"
|
||||
KLAYOUT_VERSION="0.29.10"
|
||||
|
||||
# The version used for PyPI (don't use variables here!)
|
||||
KLAYOUT_PYPI_VERSION="0.29.9"
|
||||
KLAYOUT_PYPI_VERSION="0.29.10"
|
||||
|
||||
# The build date
|
||||
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
|
||||
|
|
|
|||
Loading…
Reference in New Issue