From bb97ff0ad947220fb6c671a1418dc80c6c2b74ce Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 16 Jul 2024 10:00:48 +0200 Subject: [PATCH] chore: bump version to 0.1.1 and fix license Updated the project version from 0.1.0 to 0.1.1 to indicate minor changes. Switched the license field in pyproject.toml from GNU AGPLv3 to MIT License. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6fd7268..c02d995 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "wikimore" -version = "0.1.0" +version = "0.1.1" authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] description = "A simple frontend for Wikimedia wikis" readme = "README.md" @@ -12,7 +12,7 @@ license = { file = "LICENSE" } requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: GNU Affero General Public License v3", + "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] dependencies = ["flask", "bs4"]