Skip to content

Commit 77da473

Browse files
authored
chore: release v1.6.4 (#44)
1 parent 6388f42 commit 77da473

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A production-ready MQTT proxy for Meshtastic devices that enables bidirectional message forwarding between Meshtastic nodes and MQTT brokers. Supports TCP and Serial interface connections with a clean factory pattern architecture.
44

5-
**Version**: 1.6.3
5+
**Version**: 1.6.4
66

77
## Features
88

@@ -438,28 +438,28 @@ Because this repository enforces **Pull Request requirements** for the `master`
438438

439439
1. **Create a Release Branch:**
440440
```bash
441-
git checkout -b release/v1.6.3
441+
git checkout -b release/v1.6.4
442442
```
443443

444444
2. **Run the Release Script:**
445445
Use the provided automation script to bump the version in `version.py` and `README.md`:
446446
```bash
447-
python scripts/release.py 1.6.3
447+
python scripts/release.py 1.6.4
448448
```
449-
*This will create a local "chore: release v1.6.3" commit and a local `v1.6.3` tag.*
449+
*This will create a local "chore: release v1.6.4" commit and a local `v1.6.4` tag.*
450450

451451
3. **Push and Open a PR:**
452452
Push the branch and open a Pull Request to `master`.
453453
```bash
454-
git push origin release/v1.6.3
454+
git push origin release/v1.6.4
455455
```
456456

457457
4. **Merge and Tag:**
458458
Once the PR is merged into `master`, push the local tag to GitHub to trigger the release pipeline:
459459
```bash
460460
git checkout master
461461
git pull
462-
git push origin v1.6.3
462+
git push origin v1.6.4
463463
```
464464

465465
The GitHub Actions will automatically detect the new tag, build the Windows executable, and publish the Docker images.
@@ -500,7 +500,7 @@ while the source code of this proxy is MIT licensed, it depends on third-party l
500500

501501
- **Issues**: [GitHub Issues](https://github.com/LN4CY/mqtt-proxy/issues)
502502
- **Meshtastic Discord**: [Join](https://discord.gg/meshtastic)
503-
- **Version**: 1.6.3
503+
- **Version**: 1.6.4
504504
- **Documentation**: [Configuration Guide](CONFIG.md) | [Architecture](ARCHITECTURE.md)
505505

506506
## Roadmap

RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Release v1.6.4
2+
3+
## 🚀 Infrastructure & CI/CD
4+
- **Windows Executable Release Flow:** Fixed the GitHub Actions workflow to correctly attach the Windows `.exe` standalone application to immutable releases.
5+
6+
---
7+
18
# Release v1.6.3
29

310
## Virtual Channel RF Crosstalk Prevention

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version definition for MQTT Proxy."""
22

3-
__version__ = "1.6.3"
3+
__version__ = "1.6.4"

0 commit comments

Comments
 (0)