bump: version 0.1.0 → 0.2.0

This commit is contained in:
Lance Edgar 2025-08-10 16:01:45 -05:00
parent ec8fe97cff
commit 18f7fa6c51
2 changed files with 14 additions and 2 deletions

View file

@ -5,6 +5,18 @@ All notable changes to WuttaTell 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.2.0 (2025-08-10)
### Feat
- add native API client for common submission use case
### Fix
- add dependency for `requests`
- remove `submit_uuid` from telemetry config profile
- tweak log verbiage
## v0.1.0 (2025-08-09)
### Feat

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "WuttaTell"
version = "0.1.0"
version = "0.2.0"
description = "Telemetry submission for Wutta Framework"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
@ -27,7 +27,7 @@ classifiers = [
requires-python = ">= 3.8"
dependencies = [
"requests",
"WuttJamaican",
"WuttJamaican>=0.23.0",
]