diff --git a/PKGBUILD b/PKGBUILD index c2eb8ecc7..d7de09298 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # shellcheck disable=SC2034,SC2154 pkgname=pikaur-git -pkgver=1.15.1 +pkgver=1.15.2 pkgrel=1 pkgdesc="AUR helper which asks all questions before installing/building. Inspired by pacaur, yaourt and yay." arch=('any') diff --git a/pikaur/config.py b/pikaur/config.py index 99ec0aa1e..22451615e 100644 --- a/pikaur/config.py +++ b/pikaur/config.py @@ -33,7 +33,7 @@ class ConfigValueType(TypedDict): INT: "Final" = "int" STR: "Final" = "str" RUNNING_AS_ROOT: "Final" = os.geteuid() == 0 # @TODO: could global var be avoided here? -VERSION: "Final" = "1.15.1-dev" +VERSION: "Final" = "1.15.2-dev" _USER_TEMP_ROOT: "Final" = Path(gettempdir()) _USER_CACHE_ROOT: "Final" = Path(os.environ.get( diff --git a/setup.py b/setup.py index dc8d941ad..1ddc40038 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ SETUP_ARGS: Dict[str, Any] = dict( name='pikaur', # Required - version='1.15.1', # Required + version='1.15.2', # Required description='AUR helper with minimal dependencies', # Required long_description=LONG_DESCRIPTION, # Optional url='https://github.com/actionless/pikaur', # Optional