Compare commits

...

3 Commits

Author SHA1 Message Date
f425faea5b Bump version: 0.28.0.2 → 0.28.0.3 2021-11-19 08:41:44 +02:00
b7fe834091 Bump version: 0.28.0.1 → 0.28.0.2 2021-11-19 08:39:45 +02:00
bc09133f61 Fight removal bugfix 2021-11-19 08:39:30 +02:00
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
__author__ = """Eriks Karls"""
__email__ = "eriks@72.lv"
__version__ = "0.28.0.1"
__version__ = "0.28.0.3"
from erepublik.citizen import Citizen

View File

@ -2345,7 +2345,7 @@ class _Citizen(
self.update_citizen_info()
self.update_companies()
# Prevent messing up levelup with wam
if not (self.is_levelup_close and self.config.fight) or self.config.force_wam:
if True:
regions: Dict[int, classes.Holding] = {}
for holding in self.my_companies.holdings.values():
if holding.wam_count:

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.28.0.1
current_version = 0.28.0.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.?(?P<dev>\d+)?

View File

@ -49,6 +49,6 @@ setup(
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/eeriks/erepublik/",
version="0.28.0.1",
version="0.28.0.3",
zip_safe=False,
)