From 5135dadc7518fe0e741cad990cf41004a39bd645 Mon Sep 17 00:00:00 2001 From: github-actions <> Date: Thu, 22 Aug 2024 19:14:35 +0000 Subject: [PATCH] chore(version): Bump version 0.1.7 -> 0.1.8-alpha --- docker/compose.yaml | 2 +- pyproject.toml | 4 ++-- src/captura/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/compose.yaml b/docker/compose.yaml index d509764..1c66750 100644 --- a/docker/compose.yaml +++ b/docker/compose.yaml @@ -6,7 +6,7 @@ services: extends: file: ./compose.base.yaml service: server - image: acederberg/captura-development:0.1.7 + image: acederberg/captura-development:0.1.8-alpha networks: captura: {} volumes: diff --git a/pyproject.toml b/pyproject.toml index c3acf89..0774054 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ packages = [ {include="legere", from="src"}, {include="simulatus", from="src"} ] -version = "0.1.7" +version = "0.1.8-alpha" description = "A framework for adding sharing and collections to existing API projects." authors = ["Adrian Cederberg "] license = "MIT" @@ -131,7 +131,7 @@ warn_required_dynamic_aliases = true [tool.bumpver] -current_version = "0.1.7" +current_version = "0.1.8-alpha" version_pattern = "MAJOR.MINOR.PATCH[-TAG]" commit_message = "chore(version): Bump version {old_version} -> {new_version}" commit = true diff --git a/src/captura/__init__.py b/src/captura/__init__.py index 3408e2c..e6babab 100644 --- a/src/captura/__init__.py +++ b/src/captura/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.7" +__version__ = "0.1.8-alpha" from fastapi import FastAPI