Bump version to 2.0.1

This commit is contained in:
Eric Torres 2024-09-20 23:25:25 -07:00
parent c9ae8d26f3
commit 331aaf4348
7 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# Maintainer: Eric Torres <eric.torres@its-et.me> # Maintainer: Eric Torres <eric.torres@its-et.me>
pkgname=file-scripts pkgname=file-scripts
pkgver=2.0.0 pkgver=2.0.1
pkgrel=2 pkgrel=1
pkgdesc="Various scripts for performing file-related operations such as editing and deleting." pkgdesc="Various scripts for performing file-related operations such as editing and deleting."
arch=(any) arch=(any)
license=(GPL3) license=(GPL3)

View File

@ -5,7 +5,7 @@ set -e
trap 'exit 1' SIGINT trap 'exit 1' SIGINT
# Constants # Constants
VERSION=2.0.0 VERSION=2.0.1
template_dir="$HOME/Templates" template_dir="$HOME/Templates"
fd_opts=(--type f --threads "$(nproc)") fd_opts=(--type f --threads "$(nproc)")

View File

@ -5,7 +5,7 @@ set -e
trap 'exit 1' SIGINT trap 'exit 1' SIGINT
# Constants # Constants
VERSION=2.0.0 VERSION=2.0.1
BOOT_DIR='/boot' BOOT_DIR='/boot'
ETC_DIR='/etc' ETC_DIR='/etc'

View File

@ -5,7 +5,7 @@ set -e
trap 'exit 1' SIGINT trap 'exit 1' SIGINT
# Constants # Constants
VERSION='2.0.0' VERSION='2.0.1'
RED=$'\e[1;31m' RED=$'\e[1;31m'
GREEN=$'\e[1;32m' GREEN=$'\e[1;32m'
BLUE=$'\e[1;34m' BLUE=$'\e[1;34m'

View File

@ -2,7 +2,7 @@ class FileScripts < Formula
desc "Various scripts for performing file-related operations" desc "Various scripts for performing file-related operations"
homepage "https://github.com/etorres4/file-scripts" homepage "https://github.com/etorres4/file-scripts"
url "https://github.com/etorres4/file-scripts", :using => :git url "https://github.com/etorres4/file-scripts", :using => :git
version "2.0.0" version "2.0.1"
sha256 "fad7da96c72c8bef81f3ec6a2d1cb13b09fb44e084f98b05ba3a7dfd8b41ae12" sha256 "fad7da96c72c8bef81f3ec6a2d1cb13b09fb44e084f98b05ba3a7dfd8b41ae12"
depends_on "fd" depends_on "fd"

View File

@ -17,7 +17,7 @@
Name: file-scripts Name: file-scripts
Version: 2.0.0 Version: 2.0.1
Release: 0 Release: 0
Summary: Set of scripts for manipulating files Summary: Set of scripts for manipulating files
License: GPL-3.0-only License: GPL-3.0-only

View File

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "file-scripts" name = "file-scripts"
authors = [{name="Eric Torres", email="eric.torres@its-et.me"}] authors = [{name="Eric Torres", email="eric.torres@its-et.me"}]
version = "2.0.0" version = "2.0.1"
description = "File-related helper-scripts" description = "File-related helper-scripts"
readme = "README" readme = "README"
license = {file = "LICENSE"} license = {file = "LICENSE"}