Merge pull request #545 from hydrosquall/release/0.13.0

Update changelog for 0.13.0 release
This commit is contained in:
Cameron Yick
2020-12-12 16:45:40 -05:00
committed by GitHub
3 changed files with 13 additions and 16 deletions

View File

@@ -1,14 +1,3 @@
deploy:
on:
python: 2.7
repo: hydrosquall/tiingo-python
tags: true
distributions: sdist bdist_wheel
password:
secure: VH1rgFV5XD0k3cMZxJwetBnETrFolBaM0U4K9CKQts38LF7f4xA8muY2FFFyeqR7VF2MQhYgGMcaAQQx/gRY+7AdSnqMYvxZ7p3P81aF7ruE3KjXgV6oPkTX4LkUlZf+co1rGs59TJ4UDJQM73+9EiYD3MJ/G0KeyMnAak73HkRHWdypOGLrINLPyUuuUAxQ8k4UJWskEMXjMgKIlGdCcdbCWqso/lZqvQ+/bFfv5M+yhQK57JMlXfXsM3YMxUGY7IhYRhxHL3nCpxXacut2FBU6H1GCU8MuR2bJ/aNNdl8elNzCEZcRq8+s94yrI095HQvVW/tLWaNJ4ojZSsGhmzvC/xAB+VbCp7ZvI0vHPGEOQgR/bIkDa9uhuwCWtfM81VCPpBrXgwupgznxtsjFcmBSUOpTFLTW5dKoPDWOe5K4wHKd9IKbWwk+mAY+aczV4T0uMX/eKhEOWJS03cjIPN4qwdCy6zSnBWpJBoLR7QyYZKNL1MiyQ0toUsJO0ln6vaPTXOo0K7EJIxKVOYf3xR8kNsgWWe0Z4orSt56O8+v5OIYbDcSeY1hwklcMvQdGHlLyMx01D2v346mL532MHA24nRmXfDUz0ixx5rn7g4Tykvy2LBLYfrfhV4G6kvimTk5Y6I7Rif4y68+r+NHmBlZwUju0AsK0a+s5/XAg5Nc=
provider: pypi
user: hydrosquall
install: install:
- python setup.py develop - python setup.py develop
- pip install -U pytest-cov codecov vcrpy - pip install -U pytest-cov codecov vcrpy
@@ -17,8 +6,8 @@ install:
language: python language: python
python: python:
- 3.7
- 3.6 - 3.6
- 3.5
- 2.7 - 2.7
cache: pip cache: pip

View File

@@ -2,10 +2,17 @@
History History
======= =======
0.13.0 (2019-11-XX - Unreleased) 0.14.0 (2020-12-XX - Unreleased)
--------------------------------
* Feature (Name #Number)
0.13.0 (2020-12-12)
-------------------------------- --------------------------------
* Minor: Address Pandas Future Warning for sorting in pd.concat (#392) * Minor: Address Pandas Future Warning for sorting in pd.concat (#392)
* Feature: Add option to request data in csv format in get_dataframe method potentially boosting speed up to 4-5x. (#523) * Feature: Add option to request data in csv format in get_dataframe method potentially boosting speed up to 4-5x. (#523)
* Minor: bumped library dependencies, in particular cryptography
* Development: Dropped official support for Python 3.5, replaced with 3.7
* Development: Publish library with Github Actions instead of Travis (#546
0.12.0 (2019-10-20) 0.12.0 (2019-10-20)
-------------------- --------------------

View File

@@ -8,6 +8,7 @@ The following shows how to make a release for version 0.8.0
1. Make a branch called release/0.8.0 1. Make a branch called release/0.8.0
2. Ensure HISTORY.rst (the Changelog) is up to date 2. Ensure HISTORY.rst (the Changelog) is up to date
3. Update __version__.py to 0.8.0 3. Update __version__.py to 0.8.0 and tag the commit
4. Open a merge request to master 4. Open a merge request to master
5. After the merge request is approved and merged, tag and push the merged commit with 0.8.0. Travis CI will be responsible for releasing the new code to PyPI. 5. After the merge request is approved and merged, tag and push the merged commit with tag v0.8.0.
6. Visit https://github.com/hydrosquall/tiingo-python/releases and create a new release. Github Actions will deploy the new library to PyPI.