From fa5417b760cb6a392bec38fcf51921976aeae4d5 Mon Sep 17 00:00:00 2001 From: John Garrett Date: Wed, 20 Mar 2019 17:45:26 +0000 Subject: [PATCH] Prepare for new release (v1.0.3) --- CHANGES.md | 8 ++++++++ README.md | 10 +++++----- codemeta.json | 10 +++++----- paper/paper.bib | 10 ---------- setup.cfg | 2 +- setup.py | 3 ++- 6 files changed, 21 insertions(+), 22 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7c5e03b..8c55962 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +v1.0.3 (20-Mar-2019) +==================== + +- This release was created after the JOSS review. +- There are minor changes to the documentation, but no changes to the code base. + + + v1.0.2 (11-Mar-2019) ==================== diff --git a/README.md b/README.md index 5192db1..167d187 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **Quantum Mixing software** -[![GitHub version](https://badge.fury.io/gh/garrettj403%2FQMix.svg)](https://pypi.org/project/QMix/) +[![PyPI version](https://badge.fury.io/py/QMix.svg)](https://badge.fury.io/py/QMix) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/QMix.svg)](https://pypi.org/project/QMix/) [![Build Status](https://travis-ci.org/garrettj403/QMix.svg?branch=master)](https://travis-ci.org/garrettj403/QMix) [![Coverage Status](https://coveralls.io/repos/github/garrettj403/QMix/badge.svg?branch=master)](https://coveralls.io/github/garrettj403/QMix?branch=master) @@ -47,16 +47,16 @@ Citing QMix If you use QMix, please cite the Zenodo archive: -[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2557839.svg)](https://doi.org/10.5281/zenodo.2557839) +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2557839.svg)](https://doi.org/10.5281/zenodo.2538162) @article{Garrett2019, author = {J. D. Garrett and G. Yassin}, - title = {{garrettj403/QMix (Version v1.0.2)}}, + title = {{garrettj403/QMix (Version v1.0.3)}}, month = mar, year = 2019, publisher = {Zenodo}, - doi = {10.5281/zenodo.2590165}, - url = {http://doi.org/10.5281/zenodo.2590165} + doi = {10.5281/zenodo.2538162}, + url = {http://doi.org/10.5281/zenodo.2538162} } We have also submitted a paper to the Journal of Open Source Software. Once this paper is accepted, please cite this paper instead of the Zenodo archive (or both!). diff --git a/codemeta.json b/codemeta.json index 5d0541b..cb040e8 100644 --- a/codemeta.json +++ b/codemeta.json @@ -15,14 +15,14 @@ "affiliation": "University of Oxford" } ], - "identifier": "https://doi.org/10.5281/zenodo.2590165", + "identifier": "http://doi.org/10.5281/zenodo.2538162", "codeRepository": "https://github.com/garrettj403/QMix", - "datePublished": "2019-03-11", - "dateModified": "2019-03-11", - "dateCreated": "2019-03-11", + "datePublished": "2019-03-20", + "dateModified": "2019-03-20", + "dateCreated": "2019-03-20", "description": "QMix is a software package for simulating quasiparticle tunneling currents in Superconductor/Insulator/Superconductor (SIS) junctions. These junctions are commonly used for heterodyne mixing at millimeter and submillimeter wavelengths. QMix can be used to simulate their performance, investigate their experimental results and optimize their operation.", "keywords": "SIS mixers, radio astronomy, superconducting detectors, terahertz instrumentation, Python", "license": "GPL v3.0", "title": "QMix", - "version": "v1.0.2" + "version": "v1.0.3" } \ No newline at end of file diff --git a/paper/paper.bib b/paper/paper.bib index 7a8455f..b1bcad6 100644 --- a/paper/paper.bib +++ b/paper/paper.bib @@ -6,16 +6,6 @@ @phdthesis{Garrett2018 year = 2018, } -@article{Garrett2019, - author = {J. D. Garrett and G. Yassin}, - title = {{garrettj403/QMix (Version v1.0.2)}}, - month = mar, - year = 2019, - publisher = {Zenodo}, - doi = {10.5281/zenodo.2590165}, - url = {http://doi.org/10.5281/zenodo.2590165} -} - @phdthesis{Kittara2002, author = {P. Kittara}, school = {University of Cambridge}, diff --git a/setup.cfg b/setup.cfg index f0e1d28..c581901 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,4 +8,4 @@ license = GPL v3 url = https://github.com/garrettj403/QMix github_project = garrettj403/QMix install_requires = matplotlib, numba, numpy, scipy -version = 1.0.2 \ No newline at end of file +version = 1.0.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 939ebb2..03fcc68 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name = "QMix", - version = "1.0.2", + version = "1.0.3", author = "John Garrett", author_email = "garrettj403@gmail.com", description = ("Simulate SIS mixer operation"), @@ -26,5 +26,6 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Physics", + "Topic :: Scientific/Engineering :: Astronomy", ], )