From 3528d420da965468b8ef4e320e5e05685c389d9e Mon Sep 17 00:00:00 2001 From: Michal Stolarczyk Date: Fri, 9 Aug 2019 13:34:09 -0400 Subject: [PATCH 1/2] fix typo in is_writable function, bump version --- docs/changelog.md | 3 +++ ubiquerg/_version.py | 2 +- ubiquerg/system.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index e3b9111..e6b23b8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,7 @@ # Changelog +## [0.4.7] - 2019-08-09 +### Fixed +- `is_writable` function ## [0.4.6] - 2019-08-08 ### Added diff --git a/ubiquerg/_version.py b/ubiquerg/_version.py index 3dd3d2d..a34b2f6 100644 --- a/ubiquerg/_version.py +++ b/ubiquerg/_version.py @@ -1 +1 @@ -__version__ = "0.4.6" +__version__ = "0.4.7" diff --git a/ubiquerg/system.py b/ubiquerg/system.py index 38ac93c..2e5d1d2 100644 --- a/ubiquerg/system.py +++ b/ubiquerg/system.py @@ -5,7 +5,7 @@ __author__ = "Databio Lab" __email__ = "nathan@code.databio.org" -__all__ = ["is_command_callable"] +__all__ = ["is_command_callable", "is_writable"] def is_command_callable(cmd): @@ -51,4 +51,4 @@ def is_writable(folder, check_exist=False, create=False): else: # The folder didn't exist. Recurse up the folder hierarchy to make sure # all paths are writable - return is_writeable(os.path.dirname(folder), check_exist) + return is_writable(os.path.dirname(folder), check_exist) From ad30a013c39121f00983ea2a668f932d31b9514d Mon Sep 17 00:00:00 2001 From: Michal Stolarczyk Date: Fri, 9 Aug 2019 13:40:02 -0400 Subject: [PATCH 2/2] link issue in changelog --- docs/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index e6b23b8..0a1af21 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,7 +1,7 @@ # Changelog ## [0.4.7] - 2019-08-09 ### Fixed -- `is_writable` function +- `is_writable` function; [Issue 16](https://github.com/pepkit/ubiquerg/issues/16) ## [0.4.6] - 2019-08-08 ### Added