diff --git a/CHANGES.rst b/CHANGES.rst index 49f34b4..6718bfd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,18 +7,21 @@ This document records all notable changes to Boatswain. This project adheres to `Semantic Versioning `_. -`1.0.2`_ +`1.0.3`_ * Added a non-zero exit code when a build fails * Added a build summary show succesful and non-succesfully built images * Added a keep-building (-k) command line argument * Building now stops at the first failed image by default +`1.0.2`_ +* Correct citation.cff file + `1.0.1`_ -------- * Fixed some packaging things `1.0.0`_ -------- +-------- * Fixed help text of push command * Fixed extraction of image id from docker response in some cases @@ -27,14 +30,15 @@ This project adheres to `Semantic Versioning `_. `0.7.0`_ (2017-04-03) ----------- +--------------------- -* Added a 'before' and 'command' key to the build definition. This is a list of commands that need to be staged into the context directory. +* Added a 'before' and 'command' key to the build definition. + This is a list of commands that need to be staged into the context directory. * Default verbosity only shows 1 progress bar for all images * Changed progress indication to full white block `0.6.0`_ (2017-03-09) --------------------- +--------------------- * Added the tree command which will print the tree of the boatswain file * Added quiet and extra verbose modes @@ -88,3 +92,4 @@ This project adheres to `Semantic Versioning `_. .. _1.0.0: https://github.com/nlesc-sherlock/boatswain/compare/0.7.0...1.0.0 .. _1.0.1: https://github.com/nlesc-sherlock/boatswain/compare/1.0.0...1.0.1 .. _1.0.2: https://github.com/nlesc-sherlock/boatswain/compare/1.0.1...1.0.2 +.. _1.0.3: https://github.com/nlesc-sherlock/boatswain/compare/1.0.2...1.0.3 diff --git a/CITATION.cff b/CITATION.cff index 79c3d7e..edf147f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -22,4 +22,4 @@ license: Apache-2.0 message: "If you use this software, please cite it using these metadata." repository-code: "https://github.com/NLeSC/boatswain" title: boatswain -version: "1.0.2" +version: "1.0.3" diff --git a/codemeta.json b/codemeta.json index cd9dffc..9c614b4 100644 --- a/codemeta.json +++ b/codemeta.json @@ -23,7 +23,7 @@ }], "keywords": ["docker", "docker-compose", "containers"], "license": "http://www.apache.org/licenses/LICENSE-2.0", - "version": "1.0.2", + "version": "1.0.3", "identifier": "https://doi.org/10.5281/zenodo.1149011", "name": "boatswain" } diff --git a/setup.cfg b/setup.cfg index e8c5042..af17c7f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 [bdist_wheel] universal = 1 diff --git a/setup.py b/setup.py index 06381a6..261e208 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read(*names, **kwargs): setup( name='boatswain', - version='1.0.2', + version='1.0.3', url='https://github.com/nlesc-sherlock/boatswain', license='Apache Software License', author='Berend Weel',