From e2ffac37dee31671cb00352fea3349049235fb52 Mon Sep 17 00:00:00 2001 From: Erik Aker Date: Sat, 12 Jan 2019 08:17:21 -0800 Subject: [PATCH] version bump for release --- .gitignore | 1 + README.md | 2 ++ servant-py.cabal | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e3635af..5be9b19 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ examples/*py __pycache__ dist-newstyle *ghc.environment* +cabal.project.local diff --git a/README.md b/README.md index 5518a0f..e38e449 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # servant-py +[![Build Status](https://dev.azure.com/eraker62/servant-py/_apis/build/status/erewok.servant-py?branchName=master)](https://dev.azure.com/eraker62/servant-py/_build/latest?definitionId=1?branchName=master) + This library lets you derive automatically Python functions that let you query each endpoint of a *servant* webservice. Currently, the only supported method for generating requests is via the `requests` library, which is the recommended way to generate HTTP requests in the Python world (even among Python core devs). diff --git a/servant-py.cabal b/servant-py.cabal index 760cbf0..5ad11af 100644 --- a/servant-py.cabal +++ b/servant-py.cabal @@ -1,5 +1,5 @@ name: servant-py -version: 0.1.1.0 +version: 0.1.1.1 synopsis: Automatically derive python functions to query servant webservices. description: Automatically derive python functions to query servant webservices.