diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f7338b8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +.gitignore export-ignore +.gitattributes export-ignore +file-scripts.changes export-ignore +file-scripts.rb export-ignore +file-scripts.spec export-ignore +PKGBUILD export-ignore diff --git a/PKGBUILD b/PKGBUILD index 28cc3d0..63ed531 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Eric Torres pkgname=file-scripts -pkgver=0.9.2 +pkgver=1.0 pkgrel=0 pkgdesc="Various scripts for performing file-related operations such as editing and deleting." arch=(any) @@ -8,8 +8,8 @@ license=(GPL3) depends=(fd fzf mlocate 'python>=3.7' python-termcolor) makedepends=(python-hypothesis python-pytest python-setuptools python-sphinx) source=("${pkgname}-${pkgver}.tar.gz") -sha256sums=('85ee18f00451c5bcaae18f23600afbbd621514c8fe0b8250c8191698c396c992') -sha512sums=('f5fd0244fef5800f3ae8b34633b412b451cb014eab3206f9f003c1e12d13b034f59c45646a519a9bb2f9342b406714831cdf87cf5656ff2c3605ed4f0fc57ff2') +sha256sums=('e085eb0382f9025ea5d03abeb39148da7a97f40255a6beda79c7a066f8fc0696') +sha512sums=('82932d56c5fd828d4eaaaf6e3d59ac528c38efd23b3e5acdf9391a47bf53b357b492f751598bc23e5e1e503579e9b00704208277eff49dd7c524e7e2405633d9') package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/file-scripts.rb b/file-scripts.rb index cf35aa5..6cef77c 100644 --- a/file-scripts.rb +++ b/file-scripts.rb @@ -3,7 +3,8 @@ class FileScripts < Formula homepage "https://github.com/etorres4/file-scripts" url "https://github.com/etorres4/file-scripts", :using => :git - version "0.9.2" + version "1.0" + sha256 "e085eb0382f9025ea5d03abeb39148da7a97f40255a6beda79c7a066f8fc0696" depends_on "python@3.10" depends_on "fd" diff --git a/file-scripts.spec b/file-scripts.spec index af88e1c..2b31d6a 100644 --- a/file-scripts.spec +++ b/file-scripts.spec @@ -17,7 +17,7 @@ Name: file-scripts -Version: 0.9.2 +Version: 1.0 Release: 0 Summary: Set of scripts for manipulating files License: GPL-3.0-only diff --git a/setup.py b/setup.py index ff9a5fe..6fd7310 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="0.9.2", + version="1.0", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts",