Skip to content

Commit

Permalink
Bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsebgosselin committed Mar 17, 2022
1 parent 4125f84 commit a53768e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ image:

environment:
global:
PYHELP_VERSION: "v0.2.1.dev0"
PYHELP_VERSION: "v0.2.1"

matrix:
- PYTHON: "C:\\Miniconda37-x64"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __getattr__(cls, name):
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.2.0'
release = '0.2.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyhelp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import os

version_info = (0, 2, 0, 'dev0')
version_info = (0, 2, 1)
__version__ = '.'.join(map(str, version_info))
__appname__ = 'PyHELP'
__namever__ = __appname__ + " " + __version__
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.2.1.dev0" %}
{% set version = "0.2.1" %}

package:
name: pyhelp
Expand Down

0 comments on commit a53768e

Please sign in to comment.