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"