From 4dcb6e52b05b4a7cd001a89f4081c70dfa91e6a7 Mon Sep 17 00:00:00 2001 From: Jonathan Oribello Date: Fri, 27 Jan 2023 00:38:38 +0000 Subject: [PATCH] feat: package for 1.2.0 release --- CHANGELOG.md | 5 +++-- dp_tools/__init__.py | 8 ++++---- setup.py | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6287e..8aa7353 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,11 @@ 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). -## DRAFT[1.1.10] - +## [1.1.10] ### Added +- Microarray (Agilent 1 Channel) V&V protocol - Pandera as dependency for better validation tooling ### Changed @@ -144,3 +144,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.1.7]: https://github.com/j-81/dp_tools/compare/1.1.6...1.1.7 [1.1.8]: https://github.com/j-81/dp_tools/compare/1.1.7...1.1.8 [1.1.9]: https://github.com/j-81/dp_tools/compare/1.1.8...1.1.9 +[1.2.0]: https://github.com/j-81/dp_tools/compare/1.1.9...1.2.0 diff --git a/dp_tools/__init__.py b/dp_tools/__init__.py index 440fd39..1310592 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.1.9 +> pip install git+https://github.com/J-81/dp_tools.git@1.2.0 ## 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.1.9 \\ + docker://quay.io/j_81/dp_tools:1.2.0 \\ 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.1.9 \\ + docker://quay.io/j_81/dp_tools:1.2.0 \\ dpt-isa-to-runsheet --accession GLDS-168 \\ --config-type bulkRNASeq \\ --config-version Latest \\ @@ -90,4 +90,4 @@ ``` """ -__version__ = "1.1.9" +__version__ = "1.2.0" diff --git a/setup.py b/setup.py index d65b67e..41bb332 100644 --- a/setup.py +++ b/setup.py @@ -12,10 +12,10 @@ setup( name="dp_tools", - version="1.1.9", + version="1.2.0", description="Tooling for Data Processing Operations", author="Jonathan Oribello", - author_email="jonathan.d.oribello@nasa.gov", + author_email="jonathan.d.oribello@gmail.com", packages=find_packages(), # same as name scripts=[], package_data={