From 00fd112cb3bb0322fbd72886ceac037ca3b133fc Mon Sep 17 00:00:00 2001 From: Schuyler Martin Date: Mon, 6 Nov 2023 13:49:18 -0700 Subject: [PATCH] v0.1.3 - Minor fix in packaging Python typing --- CHANGELOG.md | 3 +++ py.typed => anaconda_packaging_utils/py.typed | 0 pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) rename py.typed => anaconda_packaging_utils/py.typed (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index af68efe..589cdfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog Note: version releases in the 0.x.y range may introduce breaking changes. +## 0.1.3 +- Minor release, `py.typed` was in the wrong directory and not part of the package. + ## 0.1.2 - Minor release, disabling some tests on Windows diff --git a/py.typed b/anaconda_packaging_utils/py.typed similarity index 100% rename from py.typed rename to anaconda_packaging_utils/py.typed diff --git a/pyproject.toml b/pyproject.toml index 39a7630..427e49b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ namespaces = false [project] name = "anaconda_packaging_utils" -version = "0.1.2" +version = "0.1.3" authors = [ { name="Anaconda, Inc.", email="distribution_team@anaconda.com" }, ]