From 3bb01f23979db35065276d91b0bc058d113d7c19 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 17 Dec 2024 16:45:11 -0600 Subject: [PATCH 1/2] fix: add `wicable`, `active` columns for Department model --- corepos/db/office_op/model.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/corepos/db/office_op/model.py b/corepos/db/office_op/model.py index 5f6fc3d..8590375 100644 --- a/corepos/db/office_op/model.py +++ b/corepos/db/office_op/model.py @@ -223,6 +223,10 @@ class Department(Base): food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True) + wicable = sa.Column('dept_wicable', sa.SmallInteger(), nullable=True) + + active = sa.Column(sa.Boolean(), default=True) + limit = sa.Column('dept_limit', sa.Float(), nullable=True) minimum = sa.Column('dept_minimum', sa.Float(), nullable=True) From 310a261b48d93701199b6326aec4be3d277f3809 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 17 Dec 2024 16:45:36 -0600 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6e7048..6c20cbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to pyCOREPOS will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.3.1 (2024-12-17) + +### Fix + +- add `wicable`, `active` columns for Department model + ## v0.3.0 (2024-08-06) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 869d6fb..0bbc23a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "pyCOREPOS" -version = "0.3.0" +version = "0.3.1" description = "Python Interface to CORE POS" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]