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.
This commit is contained in:
Kumi 2024-04-23 07:58:34 +02:00
parent 94a9881465
commit 819e4bbaae
Signed by: kumi
GPG key ID: ECBCC9082395383F
4 changed files with 11 additions and 7 deletions

View file

@ -1,5 +1,7 @@
# Changelog
### 0.3.9 (unreleased)
### 0.3.7 / 0.3.8 (2024-04-15)
* Changes to URLs in pyproject.toml

View file

@ -1,4 +1,5 @@
Copyright (c) 2023 Kumi Mitterer <gptbot@kumi.email>
Copyright (c) 2023-2024 Kumi Mitterer <gptbot@kumi.email>, Private.coffee Team
<support@private.coffee>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -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

View file

@ -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"