Skip to content

Commit fff5487

Browse files
authored
Prepare v0.5.1 release (#37)
* changed version number to 0.5.1 * updated badge * updated copyright year * updated release history * reduced envlist * added a missing item
1 parent 5d887a6 commit fff5487

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.com/arundo/adtk.svg?branch=master)](https://travis-ci.com/arundo/adtk)
44
[![Docs](https://readthedocs.com/projects/arundo-adtk/badge/?version=stable)](https://arundo-adtk.readthedocs-hosted.com)
5-
[![Coverage Status](https://coveralls.io/repos/github/arundo/adtk/badge.svg?branch=master)](https://coveralls.io/github/arundo/adtk?branch=master)
5+
[![Coverage Status](https://coveralls.io/repos/github/arundo/adtk/badge.svg?branch=master&service=github)](https://coveralls.io/github/arundo/adtk?branch=master)
66
[![PyPI](https://img.shields.io/pypi/v/adtk)](https://pypi.org/project/adtk/)
77
[![Downloads](https://pepy.tech/badge/adtk)](https://pepy.tech/project/adtk)
88
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
# General information about the project.
5858
project = "ADTK"
59-
copyright = "2019, Arundo Analytics, Inc."
59+
copyright = "2019-2020, Arundo Analytics, Inc."
6060
author = "Arundo Analytics, Inc"
6161

6262
# The version info for the project you're documenting, acts as replacement for
@@ -66,7 +66,7 @@
6666
# The short X.Y version.
6767
version = "0.5"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "0.5.0"
69+
release = "0.5.1"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

docs/releasehistory.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Release History
33
***************
44

5+
Version 0.5.1 (Jan 2, 2020)
6+
===================================
7+
- Added many new unit tests, and modified some old unit test
8+
- Removed seaborn from dependencies (use matplotlib built-in style now)
9+
- Fixed a bug in the metric module of dict objects as input
10+
- Fixed a bug in the detector OutlierDetector that output series has dtype object if NaN is present
11+
- Fixed a bug in transformer pipeline that detect and transform methods are confused
12+
- Fixed a bug in pipenet that an aggregator node may crash if its input is from a node where subset contains a single item
13+
- Fixed a bug in pipenet summary that subset column are always "all" even if not
14+
- Some minor optimization of code
15+
516
Version 0.5.0 (Dec 18, 2019)
617
===================================
718
- Changed the parameter `steps` of pipenet from list to dict

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = adtk
3-
version = 0.5.0
3+
version = 0.5.1
44
author = Arundo Analytics, Inc.
55
maintainer = Tailai Wen
66
maintainer_email = [email protected]

src/adtk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
3737
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
3838
#
39-
__version__ = "0.5"
39+
__version__ = "0.5.1"

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
[tox]
2-
envlist =
3-
py35-pandas{23,24}-numpy{15,16,17}-stats{9,10}
4-
py{36,37}-pandas{23,24,25}-numpy{15,16,17}-stats{9,10}
2+
envlist =
3+
py35-pandas24-numpy{16,17}-stats{9,10}
4+
py{36,37}-pandas{24,25}-numpy{16,17}-stats{9,10}
55
[testenv]
6-
deps =
6+
deps =
77
pytest
8-
pandas23: pandas>=0.23,<0.24
98
pandas24: pandas>=0.24,<0.25
109
pandas25: pandas>=0.25,<0.26
11-
numpy15: numpy>=1.15,<1.16
1210
numpy16: numpy>=1.16,<1.17
1311
numpy17: numpy>=1.17,<1.18
1412
stats9: statsmodels>=0.9,<0.10

0 commit comments

Comments
 (0)