diff --git a/CHANGELOG.md b/CHANGELOG.md index f2ad346..d534f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index e359127..6edf0eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ]