diff --git a/CHANGELOG.md b/CHANGELOG.md index a85ceb8..528ef67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.4] + +### Changed + +- Table updates (associated with updating ISA archive files) now separates multiple files in a field with ',' instead of ', ' + ## [1.3.3] ### Added @@ -192,3 +198,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.3.1]: https://github.com/j-81/dp_tools/compare/1.3.0...1.3.1 [1.3.2]: https://github.com/j-81/dp_tools/compare/1.3.1...1.3.2 [1.3.3]: https://github.com/j-81/dp_tools/compare/1.3.2...1.3.3 +[1.3.4]: https://github.com/j-81/dp_tools/compare/1.3.3...1.3.4 diff --git a/dp_tools/__init__.py b/dp_tools/__init__.py index 41ecd10..cd404f2 100644 --- a/dp_tools/__init__.py +++ b/dp_tools/__init__.py @@ -28,7 +28,7 @@ #### Using pip -> pip install git+https://github.com/J-81/dp_tools.git@1.3.3 +> pip install git+https://github.com/J-81/dp_tools.git@1.3.4 ## CLI Commands @@ -74,7 +74,7 @@ ``` bash # First two lines tell Singularity to run the dp_tools container in the current working directory singularity exec --bind $(pwd):$(pwd) \\ - docker://quay.io/j_81/dp_tools:1.3.3 \\ + docker://quay.io/j_81/dp_tools:1.3.4 \\ dpt-get-isa-archive --accession GLDS-168 # command we want to run ``` @@ -82,7 +82,7 @@ ``` bash # First two lines tell Singularity to run the dp_tools container in the current working directory singularity exec --bind $(pwd):$(pwd) \\ - docker://quay.io/j_81/dp_tools:1.3.3 \\ + docker://quay.io/j_81/dp_tools:1.3.4 \\ dpt-isa-to-runsheet --accession GLDS-168 \\ --config-type bulkRNASeq \\ --config-version Latest \\ @@ -90,4 +90,4 @@ ``` """ -__version__ = "1.3.3" +__version__ = "1.3.4" diff --git a/setup.py b/setup.py index 55b13cb..021a9fa 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="dp_tools", - version="1.3.3", + version="1.3.4", description="Tooling for Data Processing Operations", author="Jonathan Oribello", author_email="jonathan.d.oribello@gmail.com",