diff --git a/CHANGELOG.md b/CHANGELOG.md index 17c9d99..702a438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,37 +1,40 @@ # Changelog -## v0.4.5 +## v0.4.6 [2025-06-15] +- Update dependencies + +## v0.4.5 [2022-11-02] - Ignore #nobot in bio if the user is also a member -## v0.4.4 +## v0.4.4 [2021-11-02] - Fix some failing tests - Lowercase the domain when normalizing an account -## v0.4.3 +## v0.4.3 [2021-10-12] - Fix hashtag not working in a mention -## v0.4.2 +## v0.4.2 [2021-10-12] - Fix URL fragment detected as hashtag -## v0.4.1 +## v0.4.1 [2021-10-10] - "en" translation fixes - add `messages.json` - Config files are now parsed as JSON5 = comments are allowed -## v0.4.0 +## v0.4.0 [2021-10-10] - Add a translation system using the `locales` folder - Add more trace logging -## v0.3.0 +## v0.3.0 [2021-10-05] - Changed config/storage format to directory-based, removed shared config mutex - Made more options configurable (timeouts, catch-up limits, etc) - Changed default log level to Debug, added `-q` to reduce it (opposite of `-v`) - Code cleaning -## v0.2.8 +## v0.2.8 [2021-08-30] - fix error processing statuses when a misskey poll has infinite run time -## v0.2.7 +## v0.2.7 [2021-08-30] - Fix some wrong responses to admin commands - Remove automatic announcements from some admin commands - Send no reply to unauthorized admin commands @@ -39,34 +42,34 @@ - Add `/optout` and `/optin` - Add `#nobot` checking when using the `/boost` command -## v0.2.6 +## v0.2.6 [2021-08-28] - Allow boosting group hashtags when they are in a reply, except when it is private/DM or contains actionable commands - `/follow` and `/unfollow` are now aliases to `/add` and `/remove` (for users and tags) - Add workaround for pleroma markdown processor eating trailing hashtags - Command replies are now always DM again so we don't spam timelines -## v0.2.5 +## v0.2.5 [2021-08-27] - Add `/undo` command - Fix users joining via follow not marked as members -## v0.2.4 +## v0.2.4 [2021-08-27] - make account lookup try harder -## v0.2.3 +## v0.2.3 [2021-08-27] - `/add user` will now try to follow even if already a member -## v0.2.2 +## v0.2.2 [2021-08-27] - All hashtags, server names and handles are now lowercased = case-insensitive - Prevent the `-a` flag overwriting existing group in the config - Update the help text - `/i` now works in hashtag posts - `/add user` and `/remove user` now correctly follow/unfollow -## v0.2.1 +## v0.2.1 [2021-08-27] - More reliable websocket reconnect, workaround for pleroma socket going silent -## v0.2.0 +## v0.2.0 [2021-08-27] - Add hashtag boosting and back-follow/unfollow - Add hashtag commands - Code reorganization diff --git a/Cargo.lock b/Cargo.lock index 5b7f31f..2005d71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -374,7 +374,7 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "fedigroups" -version = "0.4.4" +version = "0.4.6" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 2c24ee5..99c75b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fedigroups" -version = "0.4.5" +version = "0.4.6" authors = ["Ondřej Hruška "] edition = "2018" publish = false