From 0ee27472a914263a11579475541f564836fa24f4 Mon Sep 17 00:00:00 2001 From: Xavier Arnaus Date: Mon, 11 Mar 2024 13:56:03 +0100 Subject: [PATCH] Release `v0.0.1` (#10) * Preparing changelog for release * Release in the changelog * Minor in the description of pyproject * The code is meant to run in Python 3.9, therefore downgrading version in GHRunners --------- Co-authored-by: Xavi --- .github/workflows/flake8.yml | 2 +- .github/workflows/tests.yml | 2 +- .github/workflows/yapf.yml | 2 +- CHANGELOG.md | 5 +++-- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index c5d0245..22e4ccc 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -9,7 +9,7 @@ jobs: runs-on: [ubuntu-latest] strategy: matrix: - python-version: ["3.10"] + python-version: ["3.9"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5eff8f8..af134a4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: [ubuntu-latest] strategy: matrix: - python-version: ["3.10"] + python-version: ["3.9"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/yapf.yml b/.github/workflows/yapf.yml index 35fc8ce..a1b8c65 100644 --- a/.github/workflows/yapf.yml +++ b/.github/workflows/yapf.yml @@ -9,7 +9,7 @@ jobs: runs-on: [ubuntu-latest] strategy: matrix: - python-version: ["3.10"] + python-version: ["3.9"] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e6e68..bcfbaf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased](https://github.com/XaviArnaus/masto-feed/) +## [v0.0.1](https://github.com/XaviArnaus/masto-feed/releases/tag/v0.0.1) - 2024-03-11 ### Added @@ -9,7 +9,8 @@ - Initial documentation ([#4](https://github.com/XaviArnaus/masto-feed/pull/4)) - Make Log rotation as default ([#5](https://github.com/XaviArnaus/masto-feed/pull/5)) - Avoid answering with ERROR_INVALID_ACTION if it's organic mention ([#8](https://github.com/XaviArnaus/masto-feed/pull/8)) -- Tests for mentions listener([#9](https://github.com/XaviArnaus/masto-feed/pull/9)) +- Tests for mentions listener ([#9](https://github.com/XaviArnaus/masto-feed/pull/9)) +- Release `v0.0.1` ([#10](https://github.com/XaviArnaus/masto-feed/pull/10)) ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 64406f9..96c65ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "MastoFeed" version = "0.0.1" -description = "Bot that reads RSS feeds and publishes the updates. It is controled by interacting with the Mastodon user directly" +description = "Bot that reads RSS feeds and publishes the updates. It is controled by interacting with the Mastodon user directly via mentions" authors = ["Xavier Arnaus "] [tool.poetry.dependencies]