Skip to content

Commit

Permalink
* UPDATE [docs] update docs & advance version number
Browse files Browse the repository at this point in the history
  • Loading branch information
JaylinYu committed Mar 25, 2023
1 parent 84aa731 commit aa188a4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,6 @@ You could join us on [Slack](https://slack-invite.emqx.io/). We now share a work
*Unsupport features of MQTT 5.0*
- Auth https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901217
- Request/Response https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901252
- Server Redirection https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901255
### MQTT Client Examples
Expand Down
3 changes: 1 addition & 2 deletions docs/en_US/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Github repository address: <https://github.com/emqx/nanomq>
- For now **NanoMQ** has following features:

- **MQTT 3.1.1** & **MQTT 5.0** Broker.
- Bridging message from edge to multiple clouds via MQTT/QUIC/nanomsg/ZeroMQ.
- Bridging message from edge to multiple clouds via MQTT/QUIC/nanomsg/ZeroMQ/DDS.
- Support WebSocket and TLS encryption.
- Embedded with internal Rule-Engine & WebHook plugins.
- Data store in SQLite or other databases while network is lost.
Expand All @@ -27,7 +27,6 @@ Github repository address: <https://github.com/emqx/nanomq>

*Unsupport features of MQTT 5.0*
- Auth https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901217
- Request/Response https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901252
- Server Redirection https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901255

[Features](./features.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/en_US/test-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ NanoMQ in collaboration with NNG. Relying on NNG's excellent network API design,

NanoMQ currently has the following functions and features:

Full support for the MQTT 3.1.1 protocol. High compatibility and portability as the project relies only on the native POSIX API and is developed purely in C. NanoMQ is internally fully asynchronous IO and multi-threaded parallelism, so there is good support for SMP while achieving low latency and high throughput. It is cost-effective in terms of resource usage and is suitable for all types of edge computing platforms.
Full support for the MQTT 3.1.1/5.0 protocol. High compatibility and portability as the project relies only on the native POSIX API and is developed purely in C. NanoMQ is internally fully asynchronous IO and multi-threaded parallelism, so there is good support for SMP while achieving low latency and high throughput. It is cost-effective in terms of resource usage and is suitable for all types of edge computing platforms.



Expand Down
3 changes: 1 addition & 2 deletions docs/zh_CN/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ IoT 时代数据是第一生产力,而边缘则是数据诞生的地方。在
目前**NanoMQ**具有的功能和特性有:

- 完整支持*MQTT 3.1.1**MQTT 5.0*
- 多种桥接方式,包括MQTT/QUIC/nanomsg/ZeroMQ等,与云端和其他服务进行数据同步。
- 多种桥接方式,包括 MQTT/QUIC/nanomsg/ZeroMQ/DDS 等,与云端和其他服务进行数据同步。
- 支持WebSocket和TLS加密连接。
- 嵌入式规则引擎 + Webhook插件,无缝集成。
- 内置数据持久化,断网缓存自动续传。
Expand All @@ -23,7 +23,6 @@ IoT 时代数据是第一生产力,而边缘则是数据诞生的地方。在

*不支持的 MQTT 5.0 特性*
- Auth https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901217
- Request/Response https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901252
- Server Redirection https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901255

![img](./images/NanoMQ-introduction.png)
Expand Down
4 changes: 2 additions & 2 deletions nanomq/include/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define NANO_VER_MAJOR 0
#define NANO_VER_MINOR 16
#define NANO_VER_PATCH 3
#define NANO_VER_ID_SHORT "0"
#define NANO_VER_PATCH 5
#define NANO_VER_ID_SHORT "2"

0 comments on commit aa188a4

Please sign in to comment.