diff --git a/PKGBUILD b/PKGBUILD index 589355878..bdb5373a1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # shellcheck disable=SC2034,SC2154 pkgname=pikaur-git -pkgver=1.14.6 +pkgver=1.14.7 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 420d726cb..61337764b 100644 --- a/pikaur/config.py +++ b/pikaur/config.py @@ -28,7 +28,7 @@ class ConfigValueType(TypedDict): RUNNING_AS_ROOT: Final = os.geteuid() == 0 # @TODO: could global var be avoided here? -VERSION: Final = "1.14.6-dev" +VERSION: Final = "${new_version}-dev" _USER_TEMP_ROOT: Final = gettempdir() _USER_CACHE_ROOT: Final = os.environ.get( diff --git a/setup.py b/setup.py index 7e196a5f9..f1fc3dc28 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ SETUP_ARGS: Dict[str, Any] = dict( name='pikaur', # Required - version='1.14.6', # Required + version='1.14.7', # Required description='AUR helper with minimal dependencies', # Required long_description=LONG_DESCRIPTION, # Optional url='https://github.com/actionless/pikaur', # Optional