From 5f6934f2268c50f4390cda1a8b95e94565ef1d02 Mon Sep 17 00:00:00 2001 From: Wei Zang Date: Sat, 4 Apr 2026 22:45:18 +0100 Subject: [PATCH] Bump version to 2.1.3; move magento CSV Update __version__ from 2.1.2 to 2.1.3 and rename/move magento_products.csv from app/api/products/utils to app/api/orders/utils. This reorganizes the CSV asset under the orders module and prepares the repo for the 2.1.3 update. --- app/__init__.py | 2 +- app/api/{products => orders}/utils/magento_products.csv | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/api/{products => orders}/utils/magento_products.csv (100%) diff --git a/app/__init__.py b/app/__init__.py index 6cc2148..5ed0f9b 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,4 +1,4 @@ """Python - FastAPI, Postgres, tsvector""" # Current Version -__version__ = "2.1.2" +__version__ = "2.1.3" diff --git a/app/api/products/utils/magento_products.csv b/app/api/orders/utils/magento_products.csv similarity index 100% rename from app/api/products/utils/magento_products.csv rename to app/api/orders/utils/magento_products.csv