Skip to content

Commit 242d6e2

Browse files
Bump to 0.3.2
1 parent 86f3831 commit 242d6e2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# klive 0.3.1
1+
# klive 0.3.2
22

33
klive is a small extension to KLayout that allows automatic loading for GDS files by sending a json with the gds path to klive.
44

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ bey opening the macro editor under `Macros -> Macro Development` (or by pressing
55

66
In the editor, go to the python section on the left and
77
look for the "Package klive" folder and open the `klive` script. Run it with the "Run scrip from current tab" (or \[Shift + F5\]).
8-
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",
8+
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",
99
klive is not running. If you cannot debug your problem, please feel free to open an
1010
issue on [GitHub](https://github.com/gdsfactory/klive/issues).
1111

klayout/grain.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>klive</name>
44
<token/>
55
<hidden>false</hidden>
6-
<version>0.3.1</version>
6+
<version>0.3.2</version>
77
<api-version>0.28.17</api-version>
88
<title>klive</title>
99
<doc>klive server to be able to stream a gds by tcp/ip</doc>

klayout/python/klive_server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def new_connection(self):
5959
current_view = window.current_view()
6060
previous_view = current_view.box() if current_view else None
6161

62-
send_data = {"version": "0.3.1"}
62+
send_data = {"version": "0.3.2"}
6363

6464
libs = data.get("libraries", {})
6565
for lib_dict in libs:
@@ -164,7 +164,7 @@ def __init__(self, server, parent=None, action=None):
164164
self.server = server
165165
if self.action is not None and self.isListening():
166166
self.action.on_triggered = self.on_action_click
167-
print("klive 0.3.1 is running")
167+
print("klive 0.3.2 is running")
168168
self.action.icon = live
169169
else:
170170
print("klive didn't start correctly. Most likely port tcp/8082")
@@ -176,7 +176,7 @@ def on_action_click(self):
176176
def close(self):
177177
super().close()
178178

179-
print("klive 0.3.1 stopped")
179+
print("klive 0.3.2 stopped")
180180
if self.action is not None and not self.action._destroyed():
181181
self.action.icon = off
182182

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# github_url = "https://github.com/<user or organization>/<project>/"
33

44
[version]
5-
current = "0.3.1"
5+
current = "0.3.2"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

0 commit comments

Comments
 (0)