Merge pull request #265 from ajmirsky/common_0.11.3

Structural elements for the 0.11.3 release
pull/272/head
Andrew Mirsky 2025-07-10 13:24:01 -04:00 zatwierdzone przez GitHub
commit fc49979389
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
10 zmienionych plików z 15 dodań i 5 usunięć

3
.gitignore vendored
Wyświetl plik

@ -4,6 +4,9 @@ __pycache__
node_modules node_modules
.vite .vite
*.pem *.pem
*.key
*.crt
*.patch
#------- Environment Files ------- #------- Environment Files -------
.python-version .python-version

Wyświetl plik

@ -1,7 +1,7 @@
# Image name and tag # Image name and tag
IMAGE_NAME := amqtt IMAGE_NAME := amqtt
IMAGE_TAG := latest IMAGE_TAG := latest
VERSION_TAG := 0.11.1 VERSION_TAG := 0.11.3-rc.1
REGISTRY := amqtt/$(IMAGE_NAME) REGISTRY := amqtt/$(IMAGE_NAME)
# Platforms to build for # Platforms to build for

Wyświetl plik

@ -1,3 +1,3 @@
"""INIT.""" """INIT."""
__version__ = "0.11.1" __version__ = "0.11.3-rc.1"

Wyświetl plik

@ -0,0 +1 @@
"""Module for plugins requiring additional dependencies."""

Wyświetl plik

@ -0,0 +1,5 @@
# Contributed Plugins
Plugins that are not part of the core functionality of the aMQTT broker or client, often requiring additional dependencies.

Wyświetl plik

@ -1,7 +1,7 @@
{ {
"name": "amqttio", "name": "amqttio",
"private": true, "private": true,
"version": "0.11.0", "version": "0.11.3",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

Wyświetl plik

@ -40,6 +40,7 @@ nav:
- Plugins: - Plugins:
- Packaged: packaged_plugins.md - Packaged: packaged_plugins.md
- Custom: custom_plugins.md - Custom: custom_plugins.md
- Contributed: contrib_plugins.md
- Configuration: - Configuration:
- Broker: references/broker_config.md - Broker: references/broker_config.md
- Client: references/client_config.md - Client: references/client_config.md

Wyświetl plik

@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.13" "Programming Language :: Python :: 3.13"
] ]
version = "0.11.1" version = "0.11.3-rc.1"
requires-python = ">=3.10.0" requires-python = ">=3.10.0"
readme = "README.md" readme = "README.md"
license = { text = "MIT" } license = { text = "MIT" }

Wyświetl plik

@ -9,7 +9,7 @@ resolution-markers = [
[[package]] [[package]]
name = "amqtt" name = "amqtt"
version = "0.11.1" version = "0.11.3rc1"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "dacite" }, { name = "dacite" },