Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plstcharles committed Jul 28, 2020
1 parent 9bd0d1d commit 515ba18
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -6,6 +6,11 @@ Changelog
`Unreleased <http://github.com/plstcharles/thelper/tree/master>`_ (latest)
----------------------------------------------------------------------------------

.. **INSERT APPLIED CHANGES HERE**
`0.6.0 <http://github.com/plstcharles/thelper/tree/v0.6.0>`_ (2020/07/28)
----------------------------------------------------------------------------------

* Refactored and cleaned up HDF5 data extraction/parsing classes
* Added dataset interfaces for BigEarthNet, Agri-Vis challenge
* Update classification task to allow multi-label classification
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -2,7 +2,7 @@ FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
LABEL name="thelper"
LABEL description="Training framework and CLI for PyTorch-based machine learning projects"
LABEL vendor="Centre de Recherche Informatique de Montréal / Computer Research Institute of Montreal (CRIM)"
LABEL version="0.5.0"
LABEL version="0.6.0"

ARG PYTHON_VERSION=3.7

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -24,9 +24,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.5.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/plstcharles/thelper/v0.6.0.svg
:alt: Commits since latest release
:target: https://github.com/plstcharles/thelper/compare/v0.5.0...master
:target: https://github.com/plstcharles/thelper/compare/v0.6.0...master

.. |readthedocs| image:: https://readthedocs.org/projects/thelper/badge/?version=latest
:alt: Documentation Build Status
Expand Down
2 changes: 1 addition & 1 deletion ci/meta.yaml
@@ -1,5 +1,5 @@
{% set name = "thelper" %}
{% set version = "0.5.0" %}
{% set version = "0.6.0" %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/conf.py
Expand Up @@ -23,7 +23,7 @@
project = 'thelper'
copyright = '2018, Pierre-Luc St-Charles'
author = 'Pierre-Luc St-Charles'
version = release = '0.5.0'
version = release = '0.6.0'


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.6.0
commit = True
tag = True
tag_name = v{new_version}
Expand Down Expand Up @@ -106,4 +106,3 @@ omit = *migrations*
exclude_lines =
if __name__ == .__main__.:
pragma: no cover

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -54,7 +54,7 @@ def _unavailable(self, e):

setuptools.setup(
name="thelper",
version="0.5.0",
version="0.6.0",
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
Expand Up @@ -23,4 +23,4 @@
logger = logging.getLogger("thelper")

__url__ = "https://github.com/plstcharles/thelper"
__version__ = "0.5.0"
__version__ = "0.6.0"

0 comments on commit 515ba18

Please sign in to comment.