mirror of https://github.com/KLayout/klayout.git
Updated version and copyright
This commit is contained in:
parent
3ef28c8a9d
commit
f3a5678c15
|
|
@ -1,4 +1,12 @@
|
|||
|
||||
0.27.6 (2021-12-19):
|
||||
* Bugfix: %GITHUB%/issues/942 Technology file routing suffix string typo
|
||||
* Bugfix: %GITHUB%/issues/946 Python: __file__ returns quoted path string
|
||||
* Bugfix: less liberal evaluation of expressions in string to numeric conversion
|
||||
This will fix a potential vulnerability which allows someone to sneak
|
||||
in expression code through malicious configuration, technology or layer properties
|
||||
files.
|
||||
|
||||
0.27.5 (2021-11-14):
|
||||
* Enhancements: Better support for execution (also cross-interpreter) of macro code from scripts
|
||||
- New methods for the Macro class like "run" and loading from file
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
klayout (0.27.6-1) unstable; urgency=low
|
||||
|
||||
* New features and bugfixes
|
||||
- See changelog
|
||||
|
||||
-- Matthias Köfferlein <matthias@koefferlein.de> Sun, 17 Dec 2021 17:04:40 +0100
|
||||
|
||||
klayout (0.27.5-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.27.5"
|
||||
KLAYOUT_VERSION="0.27.6"
|
||||
|
||||
# The version used for PyPI (don't use variables here!)
|
||||
KLAYOUT_PYPI_VERSION="0.27.5"
|
||||
KLAYOUT_PYPI_VERSION="0.27.6"
|
||||
|
||||
# The build date
|
||||
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
|
||||
|
|
|
|||
Loading…
Reference in New Issue