Skip to content

Commit 85851be

Browse files
committed
changed versions on all drivers from 0.0.1 to 0.1.0
1 parent 93ca212 commit 85851be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+41
-41
lines changed

pyscan/drivers/actonsp2300.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(self, com, baud=9600, timeout=5):
4040
time.sleep(1)
4141

4242
self.debug = False
43-
self._version = "0.0.1"
43+
self._version = "0.1.0"
4444

4545
self.initialize_properties()
4646

pyscan/drivers/agilent33500.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(self, instrument, channel):
6464
self.channel = channel
6565

6666
self.gain = 1
67-
self._version = "0.0.1"
67+
self._version = "0.1.0"
6868

6969
self.debug = False
7070
self.initialize_properties()

pyscan/drivers/agilent34410.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, instrument):
2323
super().__init__(instrument)
2424

2525
self.debug = False
26-
self._version = "0.0.1"
26+
self._version = "0.1.0"
2727

2828
# self.initialize_properties()
2929

pyscan/drivers/agilent8267d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, instrument):
3131
super().__init__(instrument)
3232

3333
self.debug = False
34-
self._version = "0.0.1"
34+
self._version = "0.1.0"
3535

3636
self.initialize_properties()
3737

pyscan/drivers/agilent8275n.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, instrument):
3030
self.gain = 1
3131

3232
self.debug = False
33-
self._version = "0.0.1"
33+
self._version = "0.1.0"
3434

3535
self.initialize_properties()
3636

pyscan/drivers/agilentdso900series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, instrument):
7575
super().__init__(instrument)
7676

7777
self.debug = False
78-
self._version = "0.0.1"
78+
self._version = "0.1.0"
7979
self.initialize_properties()
8080

8181
def initialize_properties(self):

pyscan/drivers/americanmagnetics430.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, instrument):
3131
instrument.read_termination = '\r\n'
3232
instrument.write_termination = '\r'
3333

34-
self._version = "0.0.1"
34+
self._version = "0.1.0"
3535

3636
# visa object
3737
self.instrument = instrument

pyscan/drivers/attocubeANC350.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def __init__(self, instrument):
99

1010
super().__init__(instrument)
1111

12-
self._version = "0.0.1"
12+
self._version = "0.1.0"
1313

1414
self.inst = ANC350()
1515
# self.debug = False

pyscan/drivers/bkprecision9130b.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, instrument):
3232
super().__init__(instrument)
3333

3434
self.debug = False
35-
self._version = "0.0.1"
35+
self._version = "0.1.0"
3636

3737
self.initialize_properties()
3838

pyscan/drivers/blueforslog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class BlueForsLog(object):
101101
def __init__(self, path, date='now'):
102102
self.path = Path(path)
103103
self.date = date
104-
self._version = "0.0.1"
104+
self._version = "0.1.0"
105105

106106
def get_path(self, file):
107107

0 commit comments

Comments
 (0)