From 24cb8baf94d80fd21cf46d92a3ce0bbcb1e21f54 Mon Sep 17 00:00:00 2001 From: Sebastian Goeldi Date: Thu, 21 Mar 2024 15:54:32 +0100 Subject: [PATCH] Bump to 0.3.1 --- README.md | 2 +- docs/troubleshooting.md | 2 +- klayout/grain.xml | 2 +- klayout/python/klive_server.py | 6 +++--- tbump.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7c8deb9..1799d16 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# klive 0.3.0 +# klive 0.3.1 klive is a small extension to KLayout that allows automatic loading for GDS files by sending a json with the gds path to klive. diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 9bdedaa..8f0b002 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -5,7 +5,7 @@ bey opening the macro editor under `Macros -> Macro Development` (or by pressing In the editor, go to the python section on the left and look for the "Package klive" folder and open the `klive` script. Run it with the "Run scrip from current tab" (or \[Shift + F5\]). -Make sure to switch the Console on the bottom to python. If you don't get an error message or don't see a "klive 0.3.0 is running", +Make sure to switch the Console on the bottom to python. If you don't get an error message or don't see a "klive 0.3.1 is running", klive is not running. If you cannot debug your problem, please feel free to open an issue on [GitHub](https://github.com/gdsfactory/klive/issues). diff --git a/klayout/grain.xml b/klayout/grain.xml index b7eacb9..5b5c47b 100644 --- a/klayout/grain.xml +++ b/klayout/grain.xml @@ -3,7 +3,7 @@ klive false - 0.3.0 + 0.3.1 0.28.17 klive klive server to be able to stream a gds by tcp/ip diff --git a/klayout/python/klive_server.py b/klayout/python/klive_server.py index 0238178..bc40eba 100644 --- a/klayout/python/klive_server.py +++ b/klayout/python/klive_server.py @@ -61,7 +61,7 @@ def new_connection(self): current_view = window.current_view() previous_view = current_view.box() if current_view else None - send_data = {"version": "0.3.0"} + send_data = {"version": "0.3.1"} libs = data.get("libraries", {}) for lib_dict in libs: @@ -166,7 +166,7 @@ def __init__(self, server, parent=None, action=None): self.server = server if self.action is not None and self.isListening(): self.action.on_triggered = self.on_action_click - print("klive 0.3.0 is running") + print("klive 0.3.1 is running") self.action.icon = live else: print("klive didn't start correctly. Most likely port tcp/8082") @@ -178,7 +178,7 @@ def on_action_click(self): def close(self): super().close() - print("klive 0.3.0 stopped") + print("klive 0.3.1 stopped") if self.action is not None and not self.action._destroyed(): self.action.icon = off diff --git a/tbump.toml b/tbump.toml index 93df683..8e71aa7 100644 --- a/tbump.toml +++ b/tbump.toml @@ -2,7 +2,7 @@ # github_url = "https://github.com///" [version] -current = "0.3.0" +current = "0.3.1" # Example of a semver regexp. # Make sure this matches current_version before