From bad2469a8c03dec7109d76d303188d0032f7157e Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Fri, 1 Nov 2024 22:30:25 +0000 Subject: [PATCH] release: 0.0.5 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 4 ++-- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6c774..1ffb5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.0.5 + +### Various fixes & improvements + +- fix(logs): Limit log length and check to ensure service is running before printing logs (#114) by @hubertdeng123 +- fix(list-services): Use state for finding status of list services (#108) by @hubertdeng123 +- ref(status): Improving status command when service isn't running (#113) by @IanWoodard +- include container name in status (#112) by @hubertdeng123 +- chore(errors): Adding graceful handling when docker daemon isn't running (#99) by @IanWoodard +- feat(purge): adding purge command (#84) by @IanWoodard +- feat(devservices): Proper stop logic to account for shared remote services (#104) by @hubertdeng123 +- feat(state): Add state with sqlite db (#103) by @hubertdeng123 +- chore(errors): Improving the error msgs for dependency errors (#101) by @IanWoodard +- fix(logs): Fixing naming issue with logs (#102) by @IanWoodard +- fix for when services to use is empty (#93) by @hubertdeng123 + ## 0.0.4 ### Various fixes & improvements diff --git a/README.md b/README.md index 29f1321..4dcd326 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,14 @@ A system-wide installation can be done by downloading the binary of the latest r ``` PLATFORM=darwin # Options: darwin/linux INSTALL_DIR="$HOME/.local/bin" -curl -L "https://github.com/getsentry/devservices/releases/download/0.0.4/devservices-$PLATFORM" -o "$INSTALL_DIR/devservices" +curl -L "https://github.com/getsentry/devservices/releases/download/0.0.5/devservices-$PLATFORM" -o "$INSTALL_DIR/devservices" chmod +x "$INSTALL_DIR/devservices" ``` Alternatively, if the repository you're working in has a python virtualenv, you can simply add this to the requirements-dev.txt: ``` -devservices==0.0.4 +devservices==0.0.5 ``` ## Usage diff --git a/pyproject.toml b/pyproject.toml index 88f9c32..309bedf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "devservices" -version = "0.0.4" +version = "0.0.5" # 3.10 is just for internal pypi compat requires-python = ">=3.10" dependencies = [