Skip to content

Commit

Permalink
Bump version: 1.2.2 → 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
c-mertes committed Nov 21, 2022
1 parent a8255b7 commit 5d8e401
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mamba create -n drop_env -c conda-forge -c bioconda drop --override-channels

In the case of mamba/conda troubles we recommend using the fixed `DROP_<version>.yaml` installation file we make available on our [public server](https://www.cmm.in.tum.de/public/paper/drop_analysis/). Install the current version and use the full path in the following command to install the conda environment `drop_env`
```
mamba env create -f DROP_1.2.2.yaml
mamba env create -f DROP_1.2.3.yaml
```

Test installation with demo project
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Michaela Müller'

# The full version, including alpha/beta/rc tags
release_ = '1.2.2'
release_ = '1.2.3'



Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Install the current version and use the full path in the following command to in

.. code-block:: bash
mamba env create -f DROP_1.2.2.yaml
mamba env create -f DROP_1.2.3.yaml
Installation time: ~ 10min

Expand Down
2 changes: 1 addition & 1 deletion drop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from . import utils
from . import demo

__version__ = "1.2.2"
__version__ = "1.2.3"

2 changes: 1 addition & 1 deletion drop/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

@click.group()
@click_log.simple_verbosity_option(logger)
@click.version_option('1.2.2',prog_name='drop')
@click.version_option('1.2.3',prog_name='drop')


def main():
Expand Down
16 changes: 7 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
[bumpversion]
current_version = 1.2.2

current_version = 1.2.3
commit = True

[bumpversion:file:setup.py]
search = version="{current_version}"
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:drop/__init__.py]
search = __version__ = "{current_version}"
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:drop/cli.py]
search = @click.version_option('{current_version}'
search = @click.version_option('{current_version}'
replace = @click.version_option('{new_version}'

[bumpversion:file:docs/source/conf.py]
search = release_ = '{current_version}'
search = release_ = '{current_version}'
replace = release_ = '{new_version}'

[bumpversion:file:docs/source/installation.rst]
search = mamba env create -f DROP_{current_version}.yaml
search = mamba env create -f DROP_{current_version}.yaml
replace = mamba env create -f DROP_{new_version}.yaml

[bumpversion:file:README.md]
search = mamba env create -f DROP_{current_version}.yaml
search = mamba env create -f DROP_{current_version}.yaml
replace = mamba env create -f DROP_{new_version}.yaml

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setuptools.setup(
name="drop",
version="1.2.2",
version="1.2.3",

author="Vicente A. Yépez, Michaela Müller, Nicholas H. Smith, Daniela Klaproth-Andrade, Luise Schuller, Ines Scheller, Christian Mertes <mertes@in.tum.de>, Julien Gagneur <gagneur@in.tum.de>",
author_email="yepez@in.tum.de",
Expand Down

0 comments on commit 5d8e401

Please sign in to comment.