From 7ed7b8f16f8daebcf911cbe1a23e2201d17bc3b3 Mon Sep 17 00:00:00 2001 From: rmorshea Date: Tue, 18 Jan 2022 21:29:36 -0800 Subject: [PATCH] hot fix for missing py.typed file --- MANIFEST.in | 1 + VERSION | 2 +- docs/source/developing-idom/changelog.rst | 8 ++++++++ src/client/package-lock.json | 8 ++++---- src/client/package.json | 2 +- src/client/packages/idom-app-react/package.json | 2 +- src/client/packages/idom-client-react/package.json | 2 +- src/idom/__init__.py | 2 +- 8 files changed, 18 insertions(+), 9 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index b18f55c7c..39ea6e477 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ recursive-include src/idom/client * recursive-include src/idom/web/templates * +include src/idom/py.typed diff --git a/VERSION b/VERSION index 7b52f5e51..731b95d7f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.35.0 +0.35.1 diff --git a/docs/source/developing-idom/changelog.rst b/docs/source/developing-idom/changelog.rst index 99777ea81..e03e1fe15 100644 --- a/docs/source/developing-idom/changelog.rst +++ b/docs/source/developing-idom/changelog.rst @@ -7,6 +7,14 @@ team are working on, or have feedback on how issues should be prioritized, feel :discussion-type:`open up a discussion `. +0.35.1 +------ + +Re-add accidentally deleted ``py.typed`` file to distribution. See `PEP-561 +`__ for info on +this marker file. + + 0.35.0 ------ diff --git a/src/client/package-lock.json b/src/client/package-lock.json index fd38cda0c..186febf01 100644 --- a/src/client/package-lock.json +++ b/src/client/package-lock.json @@ -1,11 +1,11 @@ { "name": "client", - "version": "0.35.0", + "version": "0.35.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.35.0", + "version": "0.35.1", "license": "MIT", "workspaces": [ "./packages/*" @@ -2632,7 +2632,7 @@ "dev": true }, "packages/idom-app-react": { - "version": "0.35.0", + "version": "0.35.1", "license": "MIT", "dependencies": { "idom-client-react": "file:packages/idom-client-react", @@ -2649,7 +2649,7 @@ }, "packages/idom-app-react/packages/idom-client-react": {}, "packages/idom-client-react": { - "version": "0.35.0", + "version": "0.35.1", "license": "MIT", "dependencies": { "fast-json-patch": "^3.0.0-1", diff --git a/src/client/package.json b/src/client/package.json index 215997a12..3d079461c 100644 --- a/src/client/package.json +++ b/src/client/package.json @@ -14,7 +14,7 @@ "publish": "npm --workspaces publish", "test": "npm --workspaces test" }, - "version": "0.35.0", + "version": "0.35.1", "workspaces": [ "./packages/*" ] diff --git a/src/client/packages/idom-app-react/package.json b/src/client/packages/idom-app-react/package.json index 4f8ebb71e..df9e52821 100644 --- a/src/client/packages/idom-app-react/package.json +++ b/src/client/packages/idom-app-react/package.json @@ -21,5 +21,5 @@ "format": "prettier --write ./src", "test": "echo 'no tests'" }, - "version": "0.35.0" + "version": "0.35.1" } diff --git a/src/client/packages/idom-client-react/package.json b/src/client/packages/idom-client-react/package.json index abe870e9e..5ea12dd23 100644 --- a/src/client/packages/idom-client-react/package.json +++ b/src/client/packages/idom-client-react/package.json @@ -31,5 +31,5 @@ "test": "uvu tests" }, "type": "module", - "version": "0.35.0" + "version": "0.35.1" } diff --git a/src/idom/__init__.py b/src/idom/__init__.py index 85f69c2de..5520b8d57 100644 --- a/src/idom/__init__.py +++ b/src/idom/__init__.py @@ -21,7 +21,7 @@ __author__ = "idom-team" -__version__ = "0.35.0" # DO NOT MODIFY +__version__ = "0.35.1" # DO NOT MODIFY __all__ = [ "component",