From f37ab70252d172b4cc9af876e60939056179416a Mon Sep 17 00:00:00 2001 From: Justin Warren Date: Wed, 11 Jan 2023 08:27:01 +1100 Subject: [PATCH 1/3] Bumped version to 0.3.0 ready for release. Changed min Python version to v3.10. --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 107ad9e..ba761ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "fediblockhole" -version = "0.2.1" +version = "0.3.0" description = "Federated blocklist management for Mastodon" readme = "README.md" license = {file = "LICENSE"} -requires-python = ">=3.6" +requires-python = ">=3.10" keywords = ["mastodon", "fediblock"] authors = [ {name = "Justin Warren"}, {email = "justin@eigenmagic.com"} @@ -34,5 +34,3 @@ fediblock-sync = "fediblockhole:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" -# requires = ["flit_core >=3.4,<4"] -# build-backend = "flit_core.buildapi" \ No newline at end of file From ca9d958b9df892b265b5ce7e38eea472dbb5f3d2 Mon Sep 17 00:00:00 2001 From: Justin Warren Date: Wed, 11 Jan 2023 08:27:15 +1100 Subject: [PATCH 2/3] Added CHANGELOG.md --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cb70e61 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,47 @@ +# Changelog + +Notable changes to the project will be documented in this changelog. + +This project uses [Semantic Versioning] and generally follows the conventions of [Keep A Changelog]. + +## [Unreleased] + +Important planned changes not yet bundled up will be listed here. + +## [0.3.0] - 2023-01-11 + +### Added + +- Added args to show version information. (1d0649a) +- Added timeout to requests calls. (23b8833) + +## [0.2.1] - 2023-01-10 + +### Added + +- User-Agent is set to FediBlockHole to identify ourselves to remote servers. (04d9eea) +- Adding packaging to prepare for submission to PyPI. (4ab369f) +- Added ability to set max severity level if an instance has followers of accounts on a to-be-blocked domain. (5518421) +- Added ability to read domain_blocks from instances that make the list public. (4ef84b5) +- Skip obfuscated domains when building the merged blocklist. (4ef84b5) + +### Changed + +- Updated documentation in README and the sample config. (68a2c93) + +### Fixed + +- Fixed a bug in config enablement of intermediate blocklists saving. (5518421) + +## Before 2023-01-10 + +- Initial rough versions that were not packaged. + + +[keep a changelog]: https://keepachangelog.com/en/1.0.0/ +[semantic versioning]: https://semver.org/spec/v2.0.0.html + + +[unreleased]: https://github.com/eigenmagic/fediblockhole/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/eigenmagic/fediblockhole/releases/tag/v0.2.1 +[0.2.1]: https://github.com/eigenmagic/fediblockhole/releases/tag/v0.2.1 \ No newline at end of file From 13d26a4dedee072af7230fe1599d7fde71fda330 Mon Sep 17 00:00:00 2001 From: Justin Warren Date: Wed, 11 Jan 2023 08:29:20 +1100 Subject: [PATCH 3/3] Updated changelog. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb70e61..08c5369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ Important planned changes not yet bundled up will be listed here. - Added args to show version information. (1d0649a) - Added timeout to requests calls. (23b8833) +- Added CHANGELOG.md (ca9d958) + +### Changed + +- Changed min Python version to v3.10. (f37ab70) ## [0.2.1] - 2023-01-10