Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -70,7 +70,7 @@
# The short X.Y version.
version = "0.6"
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = "0.6.0-dev.1+pr.97"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 6 additions & 2 deletions docs/releasehistory.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,12 +2,16 @@
Release History
***************

Version 0.6.1-dev
===================================
- Fixed some dead links in the documentation (0.6.1-dev.1+pr.97)

Version 0.6.0 (Mar 10, 2020)
===================================
- Re-designed the API of :py:mod:`adtk.visualization.plot`
- Removed :py:mod:`adtk.data.resample` because its functionality is highly overlapped with pandas resampler module
- Made :py:mod:`adtk.data.expand_event` accept events in the form of pandas Series/DataFrame
- Made :py:mod:`adtk.data.expand_event` accept time delta in the form of `str` or `int`
- Made :py:mod:`adtk.data.expand_events` accept events in the form of pandas Series/DataFrame
- Made :py:mod:`adtk.data.expand_events` accept time delta in the form of `str` or `int`
- Changed the output type of :py:mod:`adtk.data.split_train_test` from a 2-tuple of lists to a list of 2-tuples
- Turned the following model parameters required from optional

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[metadata]
name = adtk
version = 0.6.0
version = 0.6.1-dev.1+pr.97
author = Arundo Analytics, Inc.
maintainer = Tailai Wen
maintainer_email = tailai.wen@arundo.com
Expand Down
2 changes: 1 addition & 1 deletion src/adtk/__init__.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -20,4 +20,4 @@

"""

__version__ = "0.6.0"
__version__ = "0.6.0-dev.1+pr.97"