From f1ec23d16ffcb4669ef19fc026b05059550c55a7 Mon Sep 17 00:00:00 2001 From: David Buxton Date: Wed, 11 Oct 2023 09:49:48 +0100 Subject: [PATCH] Version 2.0.0 --- README.md | 10 +++------- setup.py | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d4dd115..5aedb47 100644 --- a/README.md +++ b/README.md @@ -38,15 +38,11 @@ We have included examples of websites that use the Secure Scaffold. We hope you Add the library to requirements.txt: # requirements.txt - https://github.com/google/gae-secure-scaffold-python3/archive/master.zip - -Better is to pin to a specific tag or revision. For example: - - https://github.com/google/gae-secure-scaffold-python3/archive/1.1.0.zip + https://github.com/google/gae-secure-scaffold-python3/archive/2.0.0.zip Install the library in your Python development environment: - pip install https://github.com/google/gae-secure-scaffold-python3/archive/master.zip + pip install https://github.com/google/gae-secure-scaffold-python3/archive/2.0.0.zip Import the library and use it to create a Flask application: @@ -76,7 +72,7 @@ You can customise your application by creating a Python file. Then set the envir And add the environment variable to `app.yaml`: # app.yaml - runtime: python37 + runtime: python311 handlers: - url: /.* diff --git a/setup.py b/setup.py index bc215fc..fd7a3e7 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setuptools.setup( name="Secure Scaffold", - version="1.1.0", + version="2.0.0", packages=setuptools.find_packages(where="src"), package_dir={"": "src"}, install_requires=install_requires,