diff --git a/Changelog b/Changelog index 8c8eff60f..043c36a5b 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,12 @@ +0.28.7 (2023-04-22): +* Enhancement: %GITHUB%/issues/1320 Support for .lib statement in Spice +* Bugfix: %GITHUB%/issues/1321 Tilde expansion in paths (e.g. "~/test.gds") on Linux +* Enhancement: %GITHUB%/issues/1322 RBA/pya: Manipulation of NetTracerTechnologComponent +* Bugfix: %GITHUB%/issues/1327 Python module: segfault on exit when hierarchy iterators are alive +* Bugfix: %GITHUB%/issues/1328 Width of layer selection boxes fixed and too small for long layer names +* Enhancement: %GITHUB%/issues/1339 RBA/pya: A method to get the QWidget for a LayoutView +* Enhancement: Better compatibility of Spice reader with ngspice + 0.28.6 (2023-03-16): * Enhancement: %GITHUB%/issues/1249 Include expanded/collapsed state of layer properties into session * Bugfix: %GITHUB%/issues/1265 Issues installing klayout with pip on macOS related to libpng diff --git a/Changelog.Debian b/Changelog.Debian index 3b8e4ab7e..7955ac7e3 100644 --- a/Changelog.Debian +++ b/Changelog.Debian @@ -1,3 +1,10 @@ +klayout (0.28.7-1) unstable; urgency=low + + * New features and bugfixes + - See changelog + + -- Matthias Köfferlein Sat, 22 Apr 2023 15:18:27 +0200 + klayout (0.28.6-1) unstable; urgency=low * New features and bugfixes diff --git a/src/doc/doc/manual/lvs_io.xml b/src/doc/doc/manual/lvs_io.xml index 3cc347f56..6a88d8be4 100644 --- a/src/doc/doc/manual/lvs_io.xml +++ b/src/doc/doc/manual/lvs_io.xml @@ -155,17 +155,12 @@ X$2 VSS IN OUT SUBSTRATE NMOS PARAMS: L=0.25 W=0.9 AS=0.405 AD=0.405 PS=2.7

Currently SPICE is understood with some limitations: + Only a subset of elements is implemented by default. These are + "M" (gives "MOS4" device classes), "Q" (gives BJT3 or BJT4 device + classes), "R" (gives Resistor device classes), "C" (gives + Capacitor device classes) and "D" (gives diode device classes).

- -

As for the SPICE reader, a delegate can be provided to customize the reader. For doing so, subclass the diff --git a/version.sh b/version.sh index 52820156f..fcf4baec8 100644 --- a/version.sh +++ b/version.sh @@ -2,10 +2,10 @@ # This script is sourced to define the main version parameters # The main version -KLAYOUT_VERSION="0.28.6" +KLAYOUT_VERSION="0.28.7" # The version used for PyPI (don't use variables here!) -KLAYOUT_PYPI_VERSION="0.28.6" +KLAYOUT_PYPI_VERSION="0.28.7" # The build date KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")