From bc83b26d11a57a639d221b7befa001a79abc8dfa Mon Sep 17 00:00:00 2001 From: Danny Dunlavy Date: Mon, 20 Feb 2023 15:49:10 -0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 3 +++ CONTRIBUTORS.md | 18 +++++++++++++----- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7ea47b..7d4be4a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# v1.3.9 (2023-02-20) +- Remove deprecated `numpy` code associated with aliases to built-in types and ragged arrays (Issue #48, PR #49) + # v1.3.8 (2022-10-12) - Fixed `pyttb_utils.tt_ind2sub` (Issue #45, PR #47) - Implemented `ktensor.score` (Issue #46, PR #47) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index fbafa5d1..7edb84c2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,9 +8,17 @@ U.S. Government retains certain rights in this software. ## Contributors -**Primary POC:** Danny Dunlavy, dmdunla@sandia.gov +**Primary POC:** [Danny Dunlavy](@dmdunla) -**Contributors:** -* Danny Dunlavy - original author, `sptensor`, `ktensor`, `tensor`, `tenmat`, `cp_als`, `cp_apr` -* Nick Johnson - original author, `sptensor`, `ktensor`, `tensor`, `cp_als`, `cp_apr` -* Derek Tucker - `tensor` +**Main Developers:** + +- [Danny Dunlavy](@dmdunla) - original author, `sptensor`, `ktensor`, `tensor`, `tenmat`, `cp_als`, `cp_apr`, +[PRs](https://github.com/sandialabs/pyttb/commits?author=dmdunla) +- [Nick Johnson](@ntjohnson1) - original author, `sptensor`, `ktensor`, `tensor`, `cp_als`, `cp_apr`, +[PRs](https://github.com/sandialabs/pyttb/commits?author=ntjohnson1) + +**Other Contributors:** +- [Brian Kelley](@brian_kelley) - `numpy` compatability, +[PRs](https://github.com/sandialabs/pyttb/commits?author=brian-kelley) +- [Derek Tucker](@jdtuck)[#1] - `tensor`, +[PRs](https://github.com/sandialabs/pyttb/commits?author=jdtuck) diff --git a/pyproject.toml b/pyproject.toml index 4ba381f4..bfd46bd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyttb" -version = "1.3.8" +version = "1.3.9" description = "Python Tensor Toolbox" authors = [ {name="Daniel M. Dunlavy", email="dmdunla@sandia.gov"}, diff --git a/setup.py b/setup.py index 90686ba7..bb8fd204 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='pyttb', - version='1.3.8', + version='1.3.9', packages=['pyttb'], package_dir={'': '.'}, url='',