mirror of https://github.com/KLayout/klayout.git
Merge branch 'master' into enhanced-meta-info
This commit is contained in:
commit
9690c5d1bc
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
klayout (0.28.7-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
- See changelog
|
||||
|
||||
-- Matthias Köfferlein <matthias@koefferlein.de> Sat, 22 Apr 2023 15:18:27 +0200
|
||||
|
||||
klayout (0.28.6-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
|
|
|
|||
|
|
@ -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
|
|||
|
||||
<p>
|
||||
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).
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>Parametrized circuits are not permitted except for device subcircuits
|
||||
(with a delegate)</li>
|
||||
<li>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).</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
As for the SPICE reader, a delegate can be provided to customize the reader.
|
||||
For doing so, subclass the <class_doc href="NetlistSpiceReaderDelegate"/>
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue