Skip to content

Commit

Permalink
Updated version numbers and changelog for version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasAkam committed Jun 13, 2024
1 parent ea83610 commit 3d1ed1e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
-------------------------------------------------------------------------------
Version 2.0.2 2024-06-13
-------------------------------------------------------------------------------

GUI:

- Various bug fixes.

- Specified UTF-8 encoding of data files to allow for non ASCII characters in variable names.

Devices:

- Added load cell class.

-------------------------------------------------------------------------------
Version 2.0.1 2024-01-12
-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ pyControl
├── tasks # Task definition files
└── tools # Tools for working with pycontrol data

Version: v2.0.1
Version: v2.0.2
---------------
2 changes: 1 addition & 1 deletion source/gui/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import json

VERSION = "2.0.1"
VERSION = "2.0.2"


def get_setting(setting_type, setting_name, want_default=False):
Expand Down
2 changes: 1 addition & 1 deletion source/pyControl/framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import hardware as hw
from . import utility as ut

VERSION = "2.0.1"
VERSION = "2.0.2"


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

0 comments on commit 3d1ed1e

Please sign in to comment.