Skip to content

Commit

Permalink
Version 21021701
Browse files Browse the repository at this point in the history
  • Loading branch information
4m1g0 committed Feb 17, 2021
1 parent c105920 commit ac31c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git_rev_macro.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
revision = ""
try:
revision = (
subprocess.check_output(["git", "describe", "--tags", "--always"], stderr=devnull)
subprocess.check_output(["git", "describe", "--tags", "--always"], stderr=subprocess.DEVNULL)
.strip()
.decode("utf-8")
)
Expand Down
2 changes: 1 addition & 1 deletion tinyGS/src/Status.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct TextFrame {
};

struct Status {
const uint32_t version = 21021700; // version year month day release
const uint32_t version = 21021701; // version year month day release
const char* git_version = GIT_VERSION;
bool mqtt_connected = false;
PacketInfo lastPacketInfo;
Expand Down

0 comments on commit ac31c60

Please sign in to comment.