From 468d7d192f7e45889e681bd59549f9ab39e8c930 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sat, 12 Dec 2020 10:29:01 -0500 Subject: [PATCH 1/2] Update changelog for 0.13.0 release --- HISTORY.rst | 7 ++++++- RELEASE.rst | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9b7c2fe..d5f5810 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,10 +2,15 @@ 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) * Feature: Add option to request data in csv format in get_dataframe method potentially boosting speed up to 4-5x. (#523) +* Minor: bumped non-breaking library dependencies 0.12.0 (2019-10-20) -------------------- diff --git a/RELEASE.rst b/RELEASE.rst index 5ddbcbe..4ea1834 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -2,12 +2,12 @@ Issuing New Releases ============ -Tiingo follows semantic versioning (semver.org) practices. +Tiingo follows semantic versioning (semver.org) practices. The following shows how to make a release for version 0.8.0 1. Make a branch called release/0.8.0 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 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. From 3ddbf5334c2b3c0fda2adee05a3cbb53d84638e5 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sat, 12 Dec 2020 10:46:54 -0500 Subject: [PATCH 2/2] Continuous integration cleanup --- .travis.yml | 13 +------------ HISTORY.rst | 4 +++- RELEASE.rst | 3 ++- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index f3ee0d8..7c3d6df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: - python setup.py develop - pip install -U pytest-cov codecov vcrpy @@ -17,8 +6,8 @@ install: language: python python: + - 3.7 - 3.6 - - 3.5 - 2.7 cache: pip diff --git a/HISTORY.rst b/HISTORY.rst index d5f5810..07d0cf2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -10,7 +10,9 @@ History -------------------------------- * 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) -* Minor: bumped non-breaking library dependencies +* 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) -------------------- diff --git a/RELEASE.rst b/RELEASE.rst index 4ea1834..59facbc 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -10,4 +10,5 @@ The following shows how to make a release for version 0.8.0 2. Ensure HISTORY.rst (the Changelog) is up to date 3. Update __version__.py to 0.8.0 and tag the commit 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.