Skip to content

Commit

Permalink
chore: bump version to 1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed May 21, 2023
1 parent e4bf25b commit a4849de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion pikaur/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a4849de

Please sign in to comment.