Skip to content

Commit

Permalink
release: bump version to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMythologist committed Aug 2, 2023
1 parent 5c79cee commit d066fa1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion guardian/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from util.crash import crash_report
from util.printer import print_white

__version__ = "3.4.1"
__version__ = "3.5.0"

logger = logging.getLogger(__name__)
logger.propagate = False
Expand Down
2 changes: 1 addition & 1 deletion guardian/build.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PyInstaller.__main__

version = "3.4.1"
version = "3.5.0"


def build() -> None:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Guardian"
version = "3.4.1"
version = "3.5.0"
description = "Custom firewall used to create private lobbies for GTA5 Online"
authors = ["TheMythologist <leekaixuan2001@gmail.com>"]
license = "LGPL-3.0"
Expand Down
8 changes: 4 additions & 4 deletions spec/version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(3, 4, 1, 0),
prodvers=(3, 4, 1, 0),
filevers=(3, 5, 0, 0),
prodvers=(3, 5, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -28,13 +28,13 @@ VSVersionInfo(
[StringStruct('Comments', ''),
StringStruct('CompanyName', ''),
StringStruct('FileDescription', 'Firewall'),
StringStruct('FileVersion', '3.4.1'),
StringStruct('FileVersion', '3.5.0'),
StringStruct('InternalName', 'Guardian.exe'),
StringStruct('LegalCopyright', ''),
StringStruct('LegalTrademarks', ''),
StringStruct('OriginalFilename', 'Guardian.exe'),
StringStruct('ProductName', 'Guardian'),
StringStruct('ProductVersion', '3.4.1')])
StringStruct('ProductVersion', '3.5.0')])
]),
VarFileInfo([VarStruct('Translation', [1033, 1252])])
]
Expand Down

0 comments on commit d066fa1

Please sign in to comment.