Skip to content

Commit 3d1ed1e

Browse files
committed
Updated version numbers and changelog for version 2.0.2
1 parent ea83610 commit 3d1ed1e

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

Diff for: ChangeLog.txt

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
-------------------------------------------------------------------------------
2+
Version 2.0.2 2024-06-13
3+
-------------------------------------------------------------------------------
4+
5+
GUI:
6+
7+
- Various bug fixes.
8+
9+
- Specified UTF-8 encoding of data files to allow for non ASCII characters in variable names.
10+
11+
Devices:
12+
13+
- Added load cell class.
14+
115
-------------------------------------------------------------------------------
216
Version 2.0.1 2024-01-12
317
-------------------------------------------------------------------------------

Diff for: readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ pyControl
2020
├── tasks # Task definition files
2121
└── tools # Tools for working with pycontrol data
2222

23-
Version: v2.0.1
23+
Version: v2.0.2
2424
---------------

Diff for: source/gui/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import json
33

4-
VERSION = "2.0.1"
4+
VERSION = "2.0.2"
55

66

77
def get_setting(setting_type, setting_name, want_default=False):

Diff for: source/pyControl/framework.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from . import hardware as hw
77
from . import utility as ut
88

9-
VERSION = "2.0.1"
9+
VERSION = "2.0.2"
1010

1111

1212
class pyControlError(BaseException): # Exception for pyControl errors.

0 commit comments

Comments
 (0)