diff --git a/PKGBUILD b/PKGBUILD index 684e222..d571784 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Torres pkgname=file-scripts -pkgver=1.1.4 -pkgrel=3 +pkgver=1.2.0 +pkgrel=1 pkgdesc="Various scripts for performing file-related operations such as editing and deleting." arch=(any) license=(GPL3) diff --git a/bash/version.sh b/bash/version.sh index 9afc8aa..97f68e9 100644 --- a/bash/version.sh +++ b/bash/version.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash MAJOR_VERSION=1 -MINOR_VERSION=1 -PATCH_VERSION=4 +MINOR_VERSION=2 +PATCH_VERSION=0 if [[ "$1" == '--print' ]]; then echo "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}" diff --git a/file-scripts.rb b/file-scripts.rb index 122c1c0..19fcb99 100644 --- a/file-scripts.rb +++ b/file-scripts.rb @@ -2,7 +2,7 @@ class FileScripts < Formula desc "Various scripts for performing file-related operations" homepage "https://github.com/etorres4/file-scripts" url "https://github.com/etorres4/file-scripts", :using => :git - version "1.1.4" + version "1.2.0" sha256 "fad7da96c72c8bef81f3ec6a2d1cb13b09fb44e084f98b05ba3a7dfd8b41ae12" depends_on "fd" diff --git a/file-scripts.spec b/file-scripts.spec index d232572..0405cae 100644 --- a/file-scripts.spec +++ b/file-scripts.spec @@ -17,7 +17,7 @@ Name: file-scripts -Version: 1.1.3 +Version: 1.2.0 Release: 0 Summary: Set of scripts for manipulating files License: GPL-3.0-only diff --git a/setup.py b/setup.py index 7ac7ea0..1b5b520 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("README", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="file_scripts", - version="1.1.4", + version="1.2.0", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts",