Skip to content

Commit

Permalink
Bump version: 0.2.1 → 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
plstcharles committed Jan 29, 2019
1 parent f4059b9 commit 2bd2bd2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2
commit = True
tag = True

Expand All @@ -26,3 +26,4 @@ replace = version = "{new_version}"
[bumpversion:file:ci/conda_upload.sh]
search = thelper-{current_version}.
replace = thelper-{new_version}.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Overview
:alt: Travis-CI Build Status
:target: https://travis-ci.org/plstcharles/thelper

.. |commits-since| image:: https://img.shields.io/github/commits-since/plstcharles/thelper/v0.2.1.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/plstcharles/thelper/v0.2.2.svg
:alt: Commits since latest release
:target: https://github.com/plstcharles/thelper/compare/v0.2.1...master
:target: https://github.com/plstcharles/thelper/compare/v0.2.2...master

.. |readthedocs| image:: https://readthedocs.org/projects/thelper/badge/?version=latest
:alt: Documentation Build Status
Expand Down
2 changes: 1 addition & 1 deletion ci/conda_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ mkdir $CONDA_BUILD_PATH
conda config --set anaconda_upload no
conda build .
anaconda -t $CONDA_TOKEN upload -u $CONDA_USERNAME \
$CONDA_BUILD_PATH/$TRAVIS_OS_NAME-64/thelper-0.2.1.tar.bz2 --force
$CONDA_BUILD_PATH/$TRAVIS_OS_NAME-64/thelper-0.2.2.tar.bz2 --force
2 changes: 1 addition & 1 deletion ci/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "thelper" %}
{% set version = "0.2.1" %}
{% set version = "0.2.2" %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
project = 'thelper'
copyright = '2018, Pierre-Luc St-Charles'
author = 'Pierre-Luc St-Charles'
version = release = '0.2.1'
version = release = '0.2.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _unavailable(self, e):

setuptools.setup(
name="thelper",
version="0.2.1",
version="0.2.2",
license="Apache Software License 2.0",
description="Training framework & tools for PyTorch-based machine learning projects.",
long_description="%s\n%s" % (
Expand Down
2 changes: 1 addition & 1 deletion thelper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
logger = logging.getLogger("thelper")

__url__ = "https://github.com/plstcharles/thelper"
__version__ = "0.2.1"
__version__ = "0.2.2"

0 comments on commit 2bd2bd2

Please sign in to comment.