From 18f7fa6c51d5e7108c9c333b66cacfe144aa7b87 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 10 Aug 2025 16:01:45 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) 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", ]