Automated commit: v0.15.3

This commit is contained in:
IQuant 2024-07-28 19:10:35 +03:00
parent 2c4d3ecbd9
commit d6b68f5d4a
3 changed files with 6 additions and 2 deletions

View file

@ -1997,7 +1997,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
[[package]]
name = "noita-proxy"
version = "0.15.2"
version = "0.15.3"
dependencies = [
"argh",
"bincode",

View file

@ -5,7 +5,7 @@ resolver = "2"
[package]
name = "noita-proxy"
description = "Noita Entangled Worlds companion app."
version = "0.15.2"
version = "0.15.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -111,6 +111,10 @@ def main():
print("Release already exists, exiting")
exit(1)
subprocess.run(["git", "pull"])
subprocess.run(["git", "commit", "-am", "Automated commit: "+tag])
subprocess.run(["git", "push"])
last_release = get_last_release()
print("Last release is:", last_release["name"])