diff --git a/README.md b/README.md
index aa9f3ec..dba0f94 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# klive 0.3.2
+# klive 0.3.3
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 011a4f7..76ee7e4 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.2 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.3 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 1442e61..d540963 100644
--- a/klayout/grain.xml
+++ b/klayout/grain.xml
@@ -3,7 +3,7 @@
klive
false
- 0.3.2
+ 0.3.3
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 5cac893..16d3e2a 100644
--- a/klayout/python/klive_server.py
+++ b/klayout/python/klive_server.py
@@ -59,7 +59,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.2", "klayout_version": pya.__version__}
+ send_data = {"version": "0.3.3", "klayout_version": pya.__version__}
libs = data.get("libraries", {})
for lib_dict in libs:
@@ -164,7 +164,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.2 is running")
+ print("klive 0.3.3 is running")
self.action.icon = live
else:
print("klive didn't start correctly. Most likely port tcp/8082")
@@ -176,7 +176,7 @@ def on_action_click(self):
def close(self):
super().close()
- print("klive 0.3.2 stopped")
+ print("klive 0.3.3 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 34f05f6..50081e9 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -2,7 +2,7 @@
# github_url = "https://github.com///"
[version]
-current = "0.3.2"
+current = "0.3.3"
# Example of a semver regexp.
# Make sure this matches current_version before