From 30de3fb64ab4e172e415f7ef46725c8ee4f627fe Mon Sep 17 00:00:00 2001
From: Karel van Klink <karel.vanklink@geant.org>
Date: Thu, 28 Dec 2023 16:17:16 +0100
Subject: [PATCH] increase package and API version numbers to 1.0 due to
 upcoming breaking changes

---
 lso/routes/default.py | 2 +-
 setup.py              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lso/routes/default.py b/lso/routes/default.py
index 25c74ee..d23f5a1 100644
--- a/lso/routes/default.py
+++ b/lso/routes/default.py
@@ -8,7 +8,7 @@ from importlib import metadata
 from fastapi import APIRouter
 from pydantic import BaseModel, constr
 
-API_VERSION = "0.2"
+API_VERSION = "1.0"
 VersionString = constr(pattern=r"\d+\.\d+")
 
 router = APIRouter()
diff --git a/setup.py b/setup.py
index 5cfb129..4ad8e3c 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
 
 setup(
     name="goat-lso",
-    version="0.21",
+    version="1.0",
     author="GÉANT Orchestration & Automation Team",
     author_email="goat@geant.org",
     description="Lightweight Service Orchestrator",
-- 
GitLab