diff --git a/CHANGELOG.md b/CHANGELOG.md index 820c401..d190f2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.1.1](https://www.github.com/googleapis/python-appengine-logging/compare/v0.1.0...v0.1.1) (2021-06-16) + + +### Bug Fixes + +* exclude docs and tests from package ([#5](https://www.github.com/googleapis/python-appengine-logging/issues/5)) ([7f65db0](https://www.github.com/googleapis/python-appengine-logging/commit/7f65db00cd1196d2fc2d7ec2197a594d6b56a568)) + ## 0.1.0 (2021-06-02) diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..8b58ae9 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,7 @@ +# Security Policy + +To report a security issue, please use [g.co/vulnz](https://g.co/vulnz). + +The Google Security Team will respond within 5 working days of your report on g.co/vulnz. + +We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue. diff --git a/setup.py b/setup.py index a687fed..07d5bb9 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import os import setuptools # type: ignore -version = "0.1.0" +version = "0.1.1" package_root = os.path.abspath(os.path.dirname(__file__)) @@ -33,7 +33,11 @@ author_email="googleapis-packages@oogle.com", license="Apache 2.0", url="https://github.com/googleapis/python-appengine-logging", - packages=setuptools.PEP420PackageFinder.find(), + packages=[ + package + for package in setuptools.PEP420PackageFinder.find() + if package.startswith("google") + ], namespace_packages=("google", "google.cloud"), platforms="Posix; MacOS X; Windows", include_package_data=True,