From 9a97411af138bdab571003d6011a0d3d67962477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Sat, 30 Nov 2024 06:16:14 +0000 Subject: [PATCH] Release 1.3.0 --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 6 +++--- CHANGELOG.md | 4 ++-- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index abc3b24..85b4f27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Install uv - uses: astral-sh/setup-uv@v3 + uses: astral-sh/setup-uv@v4 with: enable-cache: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4be5f9..536ece9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@v3 + uses: astral-sh/setup-uv@v4 with: enable-cache: true @@ -45,7 +45,7 @@ jobs: uv run pytest - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml + files: ./coverage.xml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3be7e67..d8c1373 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## Next version +## 1.3.0 - November 29, 2024 ### 🚀 New -* Add `observer schedule-focus-sweep` command to Overwatcher actor to schedule a focus sweep before the next tile. * [#39](https://github.com/sdss/lvmgort/pull/39) Implement transparency monitoring. +* Add `observer schedule-focus-sweep` command to Overwatcher actor to schedule a focus sweep before the next tile. ### ✨ Improved diff --git a/pyproject.toml b/pyproject.toml index 7ee30a9..5426c21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lvmgort" -version = "1.2.2a0" +version = "1.3.0" description = "The brains of LVM observing" authors = [ { name = "José Sánchez-Gallego", email = "gallegoj@uw.edu" }