diff --git a/Changelog.md b/Changelog.md index 53e1d64c..2619b9fb 100644 --- a/Changelog.md +++ b/Changelog.md @@ -14,6 +14,13 @@ ## Documentation --> +# 2.3.1 + +## Tool Updates + +* KLayout now compiled with `-qt-binding`, which increases distribution size but + allows for more features. + # 2.3.0 ## Steps diff --git a/flake.nix b/flake.nix index e3210fd6..0ea52691 100644 --- a/flake.nix +++ b/flake.nix @@ -56,6 +56,9 @@ (nix-eda.flakesToOverlay [libparse ioplace-parser volare]) (pkgs': pkgs: { yosys-sby = (pkgs.yosys-sby.override { sha256 = "sha256-Il2pXw2doaoZrVme2p0dSUUa8dCQtJJrmYitn1MkTD4="; }); + klayout = (pkgs.klayout.overrideAttrs(old: { + configurePhase = builtins.replaceStrings ["-without-qtbinding"] ["-with-qtbinding"] old.configurePhase; + })); }) ( pkgs': pkgs: let diff --git a/pyproject.toml b/pyproject.toml index 6eaf0881..467642ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openlane" -version = "2.3.0" +version = "2.3.1" description = "An infrastructure for implementing chip design flows" authors = ["Efabless Corporation and Contributors "] readme = "Readme.md"