Skip to content

Commit

Permalink
v0.4.1 and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
waqasbhatti committed May 4, 2019
1 parent 4c38669 commit 784b170
Show file tree
Hide file tree
Showing 9 changed files with 51 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.4.0
current_version = 0.4.1
commit = False
tag = False

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

## New stuff

- `periodbase.kbls`: now returns BLS stats along with the period finder results.

- `varbase.trends`: added External Parameter Decorrelation with arbitrary
external parameters, optimizer function, and objective function.

- `periodbase`: added a wrapper for the Transit Least Squares period-finder
(Hippke & Heller 2019; added by @lgbouma)

- `periodbase.zgls`: added calculation of the analytic false-alarm probability.

- `services.gaia`, `services.mast`: added single-object search-by-name
functions.

- `lcfit.utils`: added an `iterative_fit` function.


## Changes

- `lcproc.tfa`: now removes template objects from consideration if they're too
close to the target object.

- `periodbase`: broke out all of the functions in `periodbase/__init__.py` to
`periodbase/utils.py` and `periodbase/falsealarm.py` as appropriate.


## Fixes

- `periodbase`: fixed epsilon checking against values of previous best periods
when iterating through periodogram peaks (by @joshuawallace).

- `periodbase.zgls`: now correctly uses `tau` in the calculation of the
periodogram value.

- `varclass.starfeatures`: fixed missing `and` in an if-statement (by
@joshuawallace).

- `lcproc.tfa`: various bug-fixes.


# v0.4.0

This is a new major release. Several modules have been moved around. Most public
Expand Down
2 changes: 1 addition & 1 deletion astrobase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '0.4.0'
__version__ = '0.4.1'


# the basic logging styles common to all astrobase modules
Expand Down
2 changes: 1 addition & 1 deletion astrobase/hatsurveys/hatlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
from __future__ import print_function

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


#############
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.4.0'
__version__ = '0.4.1'


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

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

#############
## 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.4.0'
__version__ = '0.4.1'

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 @@ -38,7 +38,7 @@
from __future__ import print_function

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


#############
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.4.0'
__version__ = '0.4.1'

import sys

Expand Down

0 comments on commit 784b170

Please sign in to comment.