From 3a02682ce991cf7c21614cbd250890d0c10fbe25 Mon Sep 17 00:00:00 2001 From: Maheer Iqbal <42051041+maiqbal11@users.noreply.github.com> Date: Wed, 4 Sep 2019 13:59:01 -0700 Subject: [PATCH 1/2] v1.0.0 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a7251a693..7b4bc6d36 100644 --- a/setup.py +++ b/setup.py @@ -223,7 +223,7 @@ def run(self): setup( name='azure-functions-worker', - version='1.0.0b11', + version='1.0.0', description='Python Language Worker for Azure Functions Host', classifiers=[ 'License :: OSI Approved :: MIT License', @@ -233,7 +233,7 @@ def run(self): 'Operating System :: POSIX', 'Operating System :: MacOS :: MacOS X', 'Environment :: Web Environment', - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', ], license='MIT', packages=['azure_functions_worker', From a39f9e5c865a63ab623298bc3ed90c8c3d36ea6f Mon Sep 17 00:00:00 2001 From: Maheer Iqbal <42051041+maiqbal11@users.noreply.github.com> Date: Wed, 4 Sep 2019 14:09:12 -0700 Subject: [PATCH 2/2] Update README to remove preview description --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 6773201ec..2e04fcbd3 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,6 @@ |master|[![Build Status](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_apis/build/status/Azure%20Functions%20Python-CI?branchName=master)](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_build/latest?definitionId=3&branchName=master)| |dev|[![Build Status](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_apis/build/status/Azure%20Functions%20Python-CI?branchName=dev)](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_build/latest?definitionId=3&branchName=dev)| -This repository will host the Python language worker implementation for Azure Functions. We'll also be using it to track work items related to Python support. Please feel free to leave comments about any of the features and design patterns. - -> :construction: The project is currently **work in progress**. Please **do not use in production** as we expect developments over time. To receive important updates, including breaking changes announcements, watch the [Azure App Service announcements](https://github.com/Azure/app-service-announcements/issues) repository. :construction: - # Overview Python support for Azure Functions is based on Python3.6, serverless hosting on Linux and the Functions 2.0 runtime. @@ -20,10 +16,10 @@ What's available? - Build, test, debug and publish using Azure Functions Core Tools (CLI) or Visual Studio Code - Triggers / Bindings : HTTP, Blob, Queue, Timer, Cosmos DB, Event Grid, Event Hubs and Service Bus - Create a Python Function on Linux using a custom docker image +- Triggers / Bindings : Custom binding support What's coming? -- Triggers / Bindings : Custom binding support - Python 3.7 support # Get Started