Compare commits
No commits in common. "310a261b48d93701199b6326aec4be3d277f3809" and "ed48f9134a841756a455143adccc269b807f5592" have entirely different histories.
310a261b48
...
ed48f9134a
|
@ -5,12 +5,6 @@ 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/)
|
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).
|
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)
|
## v0.3.0 (2024-08-06)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -223,10 +223,6 @@ class Department(Base):
|
||||||
|
|
||||||
food_stampable = sa.Column('dept_fs', sa.Boolean(), nullable=True)
|
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)
|
limit = sa.Column('dept_limit', sa.Float(), nullable=True)
|
||||||
|
|
||||||
minimum = sa.Column('dept_minimum', sa.Float(), nullable=True)
|
minimum = sa.Column('dept_minimum', sa.Float(), nullable=True)
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "pyCOREPOS"
|
name = "pyCOREPOS"
|
||||||
version = "0.3.1"
|
version = "0.3.0"
|
||||||
description = "Python Interface to CORE POS"
|
description = "Python Interface to CORE POS"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||||
|
|
Loading…
Reference in a new issue