Skip to content

Commit

Permalink
v0.3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
waqasbhatti committed Oct 23, 2018
1 parent 31378fc commit 1fcd18d
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.19
current_version = 0.3.20
commit = False
tag = False

Expand Down
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
# v0.3.20

## New stuff

- `plotbase.plot_phased_magseries` can now overplot a light curve model. Added
by @lgbouma.
- new `varbase/transits.py` module for planet transit specific tools. Added by
@lgbouma.
- new `awsutils.py` module for interfacing with various AWS services for
`lcproc_aws.py`.
- new `lcproc_aws.py` module for lcproc functions ported to AWS workflows.
- `astrotess` now has `read_tess_fitslc`, `consolidate_tess_fitslc`, and
`filter_tess_fitslc` functions like `astrokep`.
- new `services/mast.py` module for querying the STScI MAST API. Added a
`tic_conesearch` function to help with future checkplot making that will
include TIC IDs and TESS mags.
- `lcproc.register_custom_lcformat` can now provide arbitrary kwargs to the
LC reader and normalization functions.


## Changes

- `services`: service clients that talk to single mirrors now use a random sleep
before launching the request to avoid overload when running in many parallel
processes.
- `checkplot, starfeatures`: include all GAIA neighbor proper motions instead of
just the target object proper motions.
- `starfeatures` functions now recognize TESS and Kepler mags for checkplot
making.
- `services/lccs.py`: updated for v0.2 of the LCC-Server's API.
- `lcproc.make_lclist` now accepts an input list of actual filenames to turn
into a lclist catalog pickle.
- `hatsurveys.hatlc.normalize_lcdict_byinst` now also uses the LC's CCD column
to generate the normalization key.


## Fixes

- added checks in various places for both lists and tuples where lists only were
expected.
- `lcfit.mandelagol_fit_magseries`: various bugfixes.
- `lcproc.make_lclist` now handles duplicate object IDs with different light
curve files correctly.
- `lcproc, checkplot`: remove spaces in object IDs for output filenames.
- `astrokep.py`: fix LC normalization.


# v0.3.19

## New stuff
Expand Down
2 changes: 1 addition & 1 deletion astrobase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = '0.3.19'
__version__ = '0.3.20'
2 changes: 1 addition & 1 deletion astrobase/hatsurveys/hatlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
'''

# put this in here because hatlc can be used as a standalone module
__version__ = '0.3.19'
__version__ = '0.3.20'


#############
Expand Down
2 changes: 1 addition & 1 deletion astrobase/hatsurveys/hplc.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'''

# put this in here because hplc can be used as a standalone module
__version__ = '0.3.19'
__version__ = '0.3.20'


#############
Expand Down
2 changes: 1 addition & 1 deletion astrobase/hatsurveys/k2hat.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'''

# put this in here because k2hat can be used as a standalone module
__version__ = '0.3.19'
__version__ = '0.3.20'

#############
## LOGGING ##
Expand Down
2 changes: 1 addition & 1 deletion astrobase/hatsurveys/oldhatlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
'''
# put this in here because oldhatlc can be used as a standalone module
__version__ = '0.3.19'
__version__ = '0.3.20'

import os.path
import gzip
Expand Down
2 changes: 1 addition & 1 deletion astrobase/services/lccs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'''

# put this in here because lccs can be used as a standalone module
__version__ = '0.3.19'
__version__ = '0.3.20'


#############
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
modified by me.
'''
__version__ = '0.3.19'
__version__ = '0.3.20'

import sys

Expand Down

0 comments on commit 1fcd18d

Please sign in to comment.