Skip to content

Commit

Permalink
Version bump 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsoyka committed Jan 3, 2021
1 parent db17dbe commit bf646dc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[bumpversion]
current_version = 0.2.0

[bumpversion:file:docs/conf.py]

[bumpversion:file:pigment/__init__.py]

[bumpversion:file:setup.py]
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
author = "Ben Soyka"

# The full version, including alpha/beta/rc tags
version = "0.1.1"
release = "0.1.1"
version = "0.2.0"
release = "0.2.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pigment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Python utilities for colors"""

__version__ = "0.1.1"
__version__ = "0.2.0"

from colorsys import hls_to_rgb, hsv_to_rgb, rgb_to_hls, rgb_to_hsv
from math import sqrt
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="pigment",
version="0.1.1",
version="0.2.0",
author="Ben Soyka",
author_email="[email protected]",
description="Python utilities for colors",
Expand Down

0 comments on commit bf646dc

Please sign in to comment.