Skip to content

Commit

Permalink
Fixed #1230 (LVS browser crashes) and immediately dispatching a 0.28.…
Browse files Browse the repository at this point in the history
…2 version
  • Loading branch information
klayoutmatthias committed Dec 22, 2022
1 parent 584dbcf commit 44a2aa9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.28.2 (2022-12-22):
* Bugfix: %GITHUB%/issues/1230 LVS browser crashes

0.28.1 (2022-12-21):
* Bugfix: %GITHUB%/issues/1225 XML error prevents generation of help index
* Bugfix: Python module now has py.typed
Expand Down
7 changes: 7 additions & 0 deletions Changelog.Debian
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
klayout (0.28.2-1) unstable; urgency=low

* New features and bugfixes
- See changelog

-- Matthias Köfferlein <[email protected]> Thu, 22 Dec 2022 23:16:34 +0100

klayout (0.28.1-1) unstable; urgency=low

* New features and bugfixes
Expand Down
1 change: 1 addition & 0 deletions src/db/db/dbLayoutVsSchematic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ LayoutVsSchematic::~LayoutVsSchematic ()

void LayoutVsSchematic::set_reference_netlist (db::Netlist *ref_netlist)
{
ref_netlist->keep ();
mp_reference_netlist.reset (ref_netlist);
mp_cross_ref.reset (0);
}
Expand Down
4 changes: 2 additions & 2 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This script is sourced to define the main version parameters

# The main version
KLAYOUT_VERSION="0.28.1"
KLAYOUT_VERSION="0.28.2"

# The version used for PyPI (don't use variables here!)
KLAYOUT_PYPI_VERSION="0.28.1"
KLAYOUT_PYPI_VERSION="0.28.2"

# The build date
KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d")
Expand Down

0 comments on commit 44a2aa9

Please sign in to comment.