diff --git a/PKGBUILD b/PKGBUILD index 8a0d930..1fda8e5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Eric Torres pkgname=file-scripts -pkgver=0.9.1 +pkgver=0.9.2 pkgrel=0 pkgdesc="Various scripts for performing file-related operations such as editing and deleting." arch=(any) diff --git a/file-scripts.rb b/file-scripts.rb index e564705..911f658 100644 --- a/file-scripts.rb +++ b/file-scripts.rb @@ -4,7 +4,7 @@ class HelperScripts < Formula url "https://github.com/etorres4/file-scripts", :using => :git sha256 "7b6c3f363e3b34787765b5975d87f861a19eeda278612cbf8c5176e3e2732cd9" - version "0.9" + version "0.9.2" # No build dependencies bottle :unneeded diff --git a/file-scripts.spec b/file-scripts.spec index 002f45f..8f93baf 100644 --- a/file-scripts.spec +++ b/file-scripts.spec @@ -17,7 +17,7 @@ Name: file-scripts -Version: 0.9.1 +Version: 0.9.2 Release: 1 Summary: Eric's helper scripts License: GPL-3.0-only diff --git a/setup.py b/setup.py index 1f6e6a5..ff9a5fe 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", + version="0.9.2", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts", diff --git a/tests/test_editor.py b/tests/test_editor.py index aad1d49..53e877c 100644 --- a/tests/test_editor.py +++ b/tests/test_editor.py @@ -22,9 +22,6 @@ import file_scripts.editor as editor class TestSelectEditor(unittest.TestCase): - def test_returns_path_object(self): - self.assertIsInstance(editor.select_editor(), str) - def test_override(self): override = "doesnotexist" with self.assertRaises(FileNotFoundError):