From 7cdb92eac35fe3ce2da81d3ab6f1ca325ceca6d9 Mon Sep 17 00:00:00 2001 From: apizzimenti Date: Thu, 7 Jul 2022 17:32:42 -0400 Subject: [PATCH] squash untagged commits --- .circleci/config.yml | 7 +++++-- setup.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 182bb3d3..d5c121ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,12 +62,15 @@ workflows: version: 2 test_and_deploy: jobs: - - test + - test: + filters: + tags: + only: /.*/ - deploy: requires: - test filters: tags: - only: /[0-9].*/ + only: /.*/ branches: ignore: /.*/ diff --git a/setup.py b/setup.py index 43f5c565..8483716f 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ ] # Set the version --- ensure that the latest tag matches this value. -VERSION = "1.0.0" +VERSION = "1.0.1b" # Description. here = Path(__file__).parent