Compare commits

..

2 commits

Author SHA1 Message Date
38d565d2cb bump: version 0.4.6 → 0.4.7 2025-09-20 14:38:00 -05:00
9d26aa0934 fix: fix config extension entry point
per upstream changes
2025-09-20 14:25:05 -05:00
2 changed files with 8 additions and 2 deletions

View file

@ -5,6 +5,12 @@ All notable changes to rattail-tempmon 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.4.7 (2025-09-20)
### Fix
- fix config extension entry point
## v0.4.6 (2024-08-19) ## v0.4.6 (2024-08-19)
### Fix ### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "rattail-tempmon" name = "rattail-tempmon"
version = "0.4.6" version = "0.4.7"
description = "Retail Software Framework - Temperature monitoring add-on" description = "Retail Software Framework - Temperature monitoring add-on"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
@ -34,7 +34,7 @@ Repository = "https://forgejo.wuttaproject.org/rattail/rattail-tempmon"
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-tempmon/src/branch/master/CHANGELOG.md" Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-tempmon/src/branch/master/CHANGELOG.md"
[project.entry-points."rattail.config.extensions"] [project.entry-points."wutta.config.extensions"]
tempmon = "rattail_tempmon.config:TempmonConfigExtension" tempmon = "rattail_tempmon.config:TempmonConfigExtension"