mirror of https://github.com/KLayout/klayout.git
Preparations for 0.29.2 release.
This commit is contained in:
parent
910f0824e0
commit
67f0b9c8a3
17
Changelog
17
Changelog
|
|
@ -1,3 +1,20 @@
|
|||
0.29.2 (2024-06-06):
|
||||
* Enhancement: %GITHUB%/issues/1724 Don't read duplicate LEF files
|
||||
* Bug: %GITHUB%/issues/1722 [macOS] Crash when opening layout having Custom Macro Menus
|
||||
* Enhancement: %GITHUB%/issues/1721 Feature request: send results from a query to selection
|
||||
* Enhancement: %GITHUB%/issues/1719 Small LVS issues
|
||||
* Enhancement: %GITHUB%/issues/1710 Feature request: create separate cell for def FILL
|
||||
* Bug: %GITHUB%/issues/1709 Problem displaying multiple text labels with same x value
|
||||
* Bug: %GITHUB%/issues/1706 [macOS] User Properties Dialog Crashes
|
||||
* Enhancement: %GITHUB%/issues/1701 Feature request: strm2oas should report input unit differences
|
||||
* Enhancement: Methods to obtain representative shapes of subcircuit pin and terminals, i.e.
|
||||
LayoutToNetlist#shapes_of_pin, LayoutToNetlist#shapes_of_terminal.
|
||||
* Enhancement: Some enhancements in the Ruby/Python area like better messages in case
|
||||
of argument mismatch errors and better handling of default values for enum arguments.
|
||||
* Enhancement: LayoutToNetlist#layer_indexes, LayoutToNetlist#layer_info (convenience)
|
||||
* Enhancement: blend-mode 0 (aka AddToCell) now does not generate instance duplicates
|
||||
* Bugfix: Some bug fixes on macro IDE: deleted macros do not become "zombie tabs" for example
|
||||
|
||||
0.29.1 (2024-05-04):
|
||||
* Enhancement: %GITHUB%/issues/1700 Porting 2.5d view for compatibility with OpenGL 3.0 for better support on other platforms
|
||||
This however comes with a larger memory footprint during rendering. Something to fix later.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
klayout (0.29.2-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
- See changelog
|
||||
|
||||
-- Matthias Köfferlein <matthias@koefferlein.de> Thu, 06 Jun 2024 22:20:12 +0200
|
||||
|
||||
klayout (0.29.1-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.1"
|
||||
KLAYOUT_VERSION="0.29.2"
|
||||
|
||||
# The version used for PyPI (don't use variables here!)
|
||||
KLAYOUT_PYPI_VERSION="0.29.1"
|
||||
KLAYOUT_PYPI_VERSION="0.29.2"
|
||||
|
||||
# The build date
|
||||
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
|
||||
|
|
|
|||
Loading…
Reference in New Issue