Skip to content

Commit 24cb8ba

Browse files
Bump to 0.3.1
1 parent 54103d8 commit 24cb8ba

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.0
1+
# klive 0.3.1
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.0 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.1 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.0</version>
6+
<version>0.3.1</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
@@ -61,7 +61,7 @@ def new_connection(self):
6161
current_view = window.current_view()
6262
previous_view = current_view.box() if current_view else None
6363

64-
send_data = {"version": "0.3.0"}
64+
send_data = {"version": "0.3.1"}
6565

6666
libs = data.get("libraries", {})
6767
for lib_dict in libs:
@@ -166,7 +166,7 @@ def __init__(self, server, parent=None, action=None):
166166
self.server = server
167167
if self.action is not None and self.isListening():
168168
self.action.on_triggered = self.on_action_click
169-
print("klive 0.3.0 is running")
169+
print("klive 0.3.1 is running")
170170
self.action.icon = live
171171
else:
172172
print("klive didn't start correctly. Most likely port tcp/8082")
@@ -178,7 +178,7 @@ def on_action_click(self):
178178
def close(self):
179179
super().close()
180180

181-
print("klive 0.3.0 stopped")
181+
print("klive 0.3.1 stopped")
182182
if self.action is not None and not self.action._destroyed():
183183
self.action.icon = off
184184

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.0"
5+
current = "0.3.1"
66

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

0 commit comments

Comments
 (0)