mirror of https://github.com/KLayout/klayout.git
Update version, changelog.
This commit is contained in:
parent
99f22c3221
commit
8cc0ab448f
|
|
@ -1,6 +1,6 @@
|
||||||
klayout is packaged by Peter C.S. Scholtens <peter.scholtens@xs4all.nl>
|
klayout is packaged by Peter C.S. Scholtens <peter.scholtens@xs4all.nl>
|
||||||
and Matthias Köfferlein <matthias@koefferlein.de>
|
and Matthias Köfferlein <matthias@koefferlein.de>
|
||||||
and was obtained from https://www.klayout.org/downloads/source/klayout-0.26.3.tar.gz
|
and was obtained from https://www.klayout.org/downloads/source/klayout-0.26.4.tar.gz
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
Matthias Köfferlein
|
Matthias Köfferlein
|
||||||
|
|
@ -10,8 +10,7 @@ Copyright:
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
the Free Software Foundation; either version 2 or 3 of the License.
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
|
|
||||||
12
Changelog
12
Changelog
|
|
@ -1,5 +1,7 @@
|
||||||
0.26.4 (2020-xx-xx):
|
0.26.4 (2020-02-28):
|
||||||
|
|
||||||
|
* Enhancement: %GITHUB%/issues/471
|
||||||
|
Leaner way to specify LVS compare tolerances for device parameters
|
||||||
* Enhancement: %GITHUB%/issues/473
|
* Enhancement: %GITHUB%/issues/473
|
||||||
Direct access to image data in scripts (array of values instead of
|
Direct access to image data in scripts (array of values instead of
|
||||||
per-pixel calls)
|
per-pixel calls)
|
||||||
|
|
@ -7,8 +9,16 @@
|
||||||
Issues with "target" switching in DRC solved
|
Issues with "target" switching in DRC solved
|
||||||
* Bugfix: %GITHUB%/issues/477
|
* Bugfix: %GITHUB%/issues/477
|
||||||
Missing letter "J" in Times font .. actually this bug is of 1967.
|
Missing letter "J" in Times font .. actually this bug is of 1967.
|
||||||
|
* Bugfix: %GITHUB%/issues/478
|
||||||
|
Layout queries could not use the "shapes" method
|
||||||
* Bugfix: %GITHUB%/issues/481
|
* Bugfix: %GITHUB%/issues/481
|
||||||
"isolated" DRC function reported duplicate marker shapes
|
"isolated" DRC function reported duplicate marker shapes
|
||||||
|
* Enhancement: %GITHUB%/issues/482
|
||||||
|
"join_symmetric_nets" feature in LVS for implementing
|
||||||
|
"split gate" configurations
|
||||||
|
* Enhancement: %GITHUB%/issues/486
|
||||||
|
There is a "save as" function available now in the macro editor
|
||||||
|
(in context menu of the macro tree)
|
||||||
* Enhancement: %GITHUB%/issues/489
|
* Enhancement: %GITHUB%/issues/489
|
||||||
Pin names can be attached as properties to port and pin shapes
|
Pin names can be attached as properties to port and pin shapes
|
||||||
when reading LEF or DEF
|
when reading LEF or DEF
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
klayout (0.26.4-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New features and bugfixes
|
||||||
|
- See changelog
|
||||||
|
|
||||||
|
-- Matthias Köfferlein <matthias@koefferlein.de> Thu, 27 Feb 2020 18:02:36 +0100
|
||||||
|
|
||||||
klayout (0.26.3-1) unstable; urgency=low
|
klayout (0.26.3-1) unstable; urgency=low
|
||||||
|
|
||||||
* New features and bugfixes
|
* New features and bugfixes
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
# This script is sourced to define the main version parameters
|
# This script is sourced to define the main version parameters
|
||||||
|
|
||||||
# The main version
|
# The main version
|
||||||
KLAYOUT_VERSION="0.26.3"
|
KLAYOUT_VERSION="0.26.4"
|
||||||
|
|
||||||
# The version used for PyPI (don't use variables here!)
|
# The version used for PyPI (don't use variables here!)
|
||||||
KLAYOUT_PYPI_VERSION="0.26.3"
|
KLAYOUT_PYPI_VERSION="0.26.4"
|
||||||
|
|
||||||
# The build date
|
# The build date
|
||||||
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
|
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue