From 819e4bbaae177d7b2b2154c9717443902ab94105 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 23 Apr 2024 07:58:34 +0200 Subject: [PATCH] feat: Prepare for 0.3.9 release and update copyright - Initialized preparations for the unreleased 0.3.9 version in the changelog. - Updated copyright information to include 2024 and added Private.coffee Team alongside Kumi Mitterer to reflect the collaborative nature of the project going forward. - Incremented the project version to 0.3.9.dev0 in pyproject.toml to align with upcoming development efforts. - Modified all references from Kumi's personal repo to the Private.coffee Team's repo in README.md, LICENSE, and pyproject.toml, ensuring future contributions and issues are directed to the correct repository. This change facilitates a broader collaboration platform and acknowledges the team's growing involvement in the project's development. These updates are critical for the upcoming development phase and for accurately representing the collaborative efforts behind the project. --- CHANGELOG.md | 2 ++ LICENSE | 3 ++- README.md | 4 ++-- pyproject.toml | 9 +++++---- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 016678e..29e3cc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +### 0.3.9 (unreleased) + ### 0.3.7 / 0.3.8 (2024-04-15) * Changes to URLs in pyproject.toml diff --git a/LICENSE b/LICENSE index 18d99e9..c7bb4f6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ -Copyright (c) 2023 Kumi Mitterer +Copyright (c) 2023-2024 Kumi Mitterer , Private.coffee Team + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d9e7bd1..e426b87 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ pip install matrix-gptbot[all] This will install the latest release of the bot and all required dependencies for all available features. -You can also use `pip install git+https://git.private.coffee/kumi/matrix-gptbot.git` +You can also use `pip install git+https://git.private.coffee/privatecoffee/matrix-gptbot.git` to install the latest version from the Git repository. #### End-to-end encryption @@ -82,7 +82,7 @@ Clone the repository and install the requirements to a virtual environment. ```shell # Clone the repository -git clone https://git.private.coffee/kumi/matrix-gptbot.git +git clone https://git.private.coffee/privatecoffee/matrix-gptbot.git cd matrix-gptbot # If desired, activate a venv first diff --git a/pyproject.toml b/pyproject.toml index 29f64b0..33ad582 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,10 +7,11 @@ allow-direct-references = true [project] name = "matrix-gptbot" -version = "0.3.8" +version = "0.3.9.dev0" authors = [ { name="Kumi Mitterer", email="gptbot@kumi.email" }, + { name="Private.coffee Team", email="support@private.coffee" }, ] description = "Multifunctional Chatbot for Matrix" @@ -65,9 +66,9 @@ dev = [ ] [project.urls] -"Homepage" = "https://git.private.coffee/kumi/matrix-gptbot" -"Bug Tracker" = "https://git.private.coffee/kumi/matrix-gptbot/issues" -"Source Code" = "https://git.private.coffee/kumi/matrix-gptbot" +"Homepage" = "https://git.private.coffee/privatecoffee/matrix-gptbot" +"Bug Tracker" = "https://git.private.coffee/privatecoffee/matrix-gptbot/issues" +"Source Code" = "https://git.private.coffee/privatecoffee/matrix-gptbot" [project.scripts] gptbot = "gptbot.__main__:main"