Skip to content

Commit

Permalink
Updating the history and version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-m-mudd committed Feb 1, 2024
1 parent a889b8c commit 8935851
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Contributors
------------

* Simon M Mudd <[email protected]>
* Dan Goldberg <[email protected]>
11 changes: 9 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
* 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)
2 changes: 1 addition & 1 deletion nrfapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Simon M Mudd and Simon Moulds"""
__email__ = '[email protected]'
__version__ = '0.1'
__version__ = '0.2'


from .nrfapy import *
2 changes: 1 addition & 1 deletion nrfapy/nrfapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 8935851

Please sign in to comment.