From 0431c7085c8a6887d812f4ef0f850defa541b50a Mon Sep 17 00:00:00 2001 From: Ryuichi Yamamoto Date: Thu, 20 Jul 2023 12:55:27 +0900 Subject: [PATCH] prep for v0.2.1 --- docs/changelog.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3f7a316..0dcaee6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Change log ========== +v0.2.1 <2023-07-20> +-------------------- + +- `#96`_: Restrict Cython version to <3.0.0 + v0.2.0 <2022-11-06> -------------------- @@ -176,3 +181,4 @@ v0.1.0 <2015-09-05> .. _#83: https://github.com/r9y9/pysptk/pull/83 .. _#87: https://github.com/r9y9/pysptk/pull/87 .. _#92: https://github.com/r9y9/pysptk/pull/92 +.. _#96: https://github.com/r9y9/pysptk/pull/96 diff --git a/setup.py b/setup.py index 1a0164f..464c4df 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import setuptools.command.develop from setuptools import Extension, find_packages, setup -version = "0.2.0" +version = "0.2.1" # Adapted from https://github.com/py_torch/pytorch cwd = os.path.dirname(os.path.abspath(__file__))