Skip to content

Commit ac31c60

Browse files
committed
Version 21021701
1 parent c105920 commit ac31c60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

git_rev_macro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
revision = ""
44
try:
55
revision = (
6-
subprocess.check_output(["git", "describe", "--tags", "--always"], stderr=devnull)
6+
subprocess.check_output(["git", "describe", "--tags", "--always"], stderr=subprocess.DEVNULL)
77
.strip()
88
.decode("utf-8")
99
)

tinyGS/src/Status.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct TextFrame {
6161
};
6262

6363
struct Status {
64-
const uint32_t version = 21021700; // version year month day release
64+
const uint32_t version = 21021701; // version year month day release
6565
const char* git_version = GIT_VERSION;
6666
bool mqtt_connected = false;
6767
PacketInfo lastPacketInfo;

0 commit comments

Comments
 (0)