diff --git a/AUTHORS.rst b/AUTHORS.rst index 9224547..b09ab53 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -11,3 +11,4 @@ Contributors ------------ * Simon M Mudd +* Dan Goldberg diff --git a/HISTORY.rst b/HISTORY.rst index c267c09..fd00d20 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,11 +2,18 @@ History ======= -0.1 (2024-01-2024) +0.1 (2024-01-20) ------------------ * Initial coding by Simon Moulds, packaged by Simon Mudd * Initial release on pypi * Then Simon Mudd had to delete the release because he was calling it NFRA instead of NRFA, mainly because nfrapy sounds a bit like frappuchino and that suggests a clever logo. Simon Moulds had to point out to the disappointed Muddpile that this was the wrong acronym. * Basic functionality: simply calls the NRFA API and gets time series data -* A command line script is included: nrfa_get_ts \ No newline at end of file +* A command line script is included: nrfa_get_ts + +0.2 (2024-02-01) +----------------- + +* Update so that the time column is always parsed as a datetime (S Moulds) +* Added flag that allows the time to be used as an index, which is useful for some dataframe operations (D Golberg) +* Added an option to feed the timeseries function a list of strings that all fetching then concatenaiton of different timeseries (D Goldberg) \ No newline at end of file diff --git a/nrfapy/__init__.py b/nrfapy/__init__.py index 281c9f8..fb22d3c 100644 --- a/nrfapy/__init__.py +++ b/nrfapy/__init__.py @@ -2,7 +2,7 @@ __author__ = """Simon M Mudd and Simon Moulds""" __email__ = 'simon.m.mudd@ed.ac.uk' -__version__ = '0.1' +__version__ = '0.2' from .nrfapy import * diff --git a/nrfapy/nrfapy.py b/nrfapy/nrfapy.py index a250c6f..32bfd6f 100644 --- a/nrfapy/nrfapy.py +++ b/nrfapy/nrfapy.py @@ -86,7 +86,7 @@ def get_ts(id, data_type, date_index=False): Returns: pandas Dataframe containing the requested dataset - Author: Simon Moulds + Author: Simon Moulds, Dan Goldberg Date: 20/01/2024 """ diff --git a/setup.py b/setup.py index 003b2c0..c5d60bc 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/simon-m-mudd/nrfapy', - version='0.1', + version='0.2', zip_safe=False, )