Skip to content

Commit

Permalink
Merge pull request #267 from ralph-group/v0.8_release
Browse files Browse the repository at this point in the history
Update to v0.8
  • Loading branch information
cjermain committed Mar 29, 2020
2 parents 07cf309 + dd16952 commit e48f9d6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
22 changes: 18 additions & 4 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
Version 0.7 -- release 8/4/19
=============================
Version 0.8 -- released 3/29/19
===============================
- Python 3.8 is now supported
- New Measurement Sequencer allows for running over a large parameter space (@CasperSchippers)
- New image plotting feature for live image measurements (@jmittelstaedt)
- Improvements to VISA adapter (@moritzj29)
- Added Tektronix AFG 3000, Keithley 2750 (@StePhanino, @dennisfeng2)
- Documentation improvements (@mivade)
- Fix to ScientificInput for float strings (@moritzj29)
- New validator: strict_discrete_range (@moritzj29)
- Improvements to Recorder thread joining
- Migrating the ReadtheDocs configuration to version 2
- National Instruments Virtual Bench initial support (@moritzj29)

Version 0.7 -- released 8/4/19
==============================
- Dropped support for Python 3.4, adding support for Python 3.7
- Significant improvements to CI, dependencies, and conda environment (@bilderbuchi, @cjermain)
- Fix for PyQT issue in ResultsDialog (@CasperSchippers)
Expand All @@ -10,8 +24,8 @@ Version 0.7 -- release 8/4/19
- Proper escaping support in CSV headers (@feph)
- Minor updates (@dvase)

Version 0.6.1 -- release 4/21/19
================================
Version 0.6.1 -- released 4/21/19
=================================
- Added Elektronica SM70-45D, Agilent 33220A, and Keysight N5767A instruments
(@CasperSchippers, @sumatrae)
- Fixes for Prologix adapter and Keithley 2400 (@hlgirard, @ronan-sensome)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.7.0'
version = '0.8.0'
# The full version, including alpha/beta/rc tags.
release = '0.7.0'
release = '0.8.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pymeasure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# THE SOFTWARE.
#

__version__ = '0.7.0'
__version__ = '0.8.0'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@

setup(
name='PyMeasure',
version='0.7.0',
version='0.8.0',
author='PyMeasure Developers',
packages=find_packages(),
scripts=[],
url='https://github.com/ralph-group/pymeasure',
download_url='https://github.com/ralph-group/pymeasure/tarball/v0.7.0',
download_url='https://github.com/ralph-group/pymeasure/tarball/v0.8.0',
license='MIT License',
description='Scientific measurement library for instruments, experiments, and live-plotting',
long_description=open('README.rst').read() + "\n\n" + open('CHANGES.txt').read(),
Expand Down

0 comments on commit e48f9d6

Please sign in to comment.