Compare commits

...

2 commits

3 changed files with 11 additions and 1 deletions

View file

@ -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

View file

@ -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)

View file

@ -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"}]