Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

0.43.1 #197

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.43.1] - 2023-07-20
### Fixed
- IV ramp 4-Wire with Bias measurement (#195).

## [0.43.0] - 2023-07-19
### Added
- Plugin system (#193).
Expand Down Expand Up @@ -362,7 +366,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Filter selection for type `moving`.
- Default HV source route terminal `rear` (#17).

[Unreleased]: https://github.com/hephy-dd/comet-pqc/compare/0.43.0...HEAD
[Unreleased]: https://github.com/hephy-dd/comet-pqc/compare/0.43.1...HEAD
[0.43.1]: https://github.com/hephy-dd/comet-pqc/compare/0.43.0...0.43.1
[0.43.0]: https://github.com/hephy-dd/comet-pqc/compare/0.42.2...0.43.0
[0.42.2]: https://github.com/hephy-dd/comet-pqc/compare/0.42.1...0.42.2
[0.42.1]: https://github.com/hephy-dd/comet-pqc/compare/0.42.0...0.42.1
Expand Down
2 changes: 1 addition & 1 deletion comet_pqc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.43.0"
__version__ = "0.43.1"
6 changes: 6 additions & 0 deletions comet_pqc/measurements/iv_ramp_4_wire_bias.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ def initialize(self, hvsrc, vsrc):
"vsrc_output": self.vsrc_get_output_state(vsrc),
})

self.hvsrc_set_output_state(hvsrc, vsrc.OUTPUT_ON)
time.sleep(.100)
self.process.emit("state", {
"hvsrc_output": self.hvsrc_get_output_state(hvsrc),
})

self.process.emit("progress", 4, 5)

# Ramp HV Spource to bias voltage
Expand Down
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ nav_order: 10
# Changelog
{: .no_toc }

## 0.43.0

### Added
- Plugin system.
- Slack notification plugin.
- IV ramp 4-Wire with Bias measurement.
- PyInstaller specification for building windows executable.

### Changed
- Dropped support for Python 3.7
- Using Flask instead of Bottle for JSON API.

## 0.42.2

### Fixed
Expand Down