From 4e3c04bea65dba549ca8dd009d33e297fa670001 Mon Sep 17 00:00:00 2001 From: Gjorgji Jankovski Date: Wed, 17 Apr 2019 16:30:39 +0200 Subject: [PATCH] bump version --- .travis.yml | 4 ++-- chaperone/cproc/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b14a587..ec1b4a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ matrix: services: - docker env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686 - PRE_CMD=linux32 + PRE_CMD=linux32 install: - docker pull $DOCKER_IMAGE @@ -25,9 +25,9 @@ before_deploy: deploy: provider: releases api_key: $GIT_TOKEN + skip_cleanup: true file_glob: true file: wheelhouse/* # deploy when a new tag is pushed on: tags: true - diff --git a/chaperone/cproc/version.py b/chaperone/cproc/version.py index 7627d82..f117e5b 100644 --- a/chaperone/cproc/version.py +++ b/chaperone/cproc/version.py @@ -1,7 +1,7 @@ # This file is designed to be used as a package module, but also as a main program runnable # by Python2 or Python3 which will print the version. Used in setup.py -VERSION = (0,3,9) +VERSION = (0,3,10) DISPLAY_VERSION = ".".join([str(v) for v in VERSION]) LICENSE = "Apache License, Version 2.0"