Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
0.4.0
  • Loading branch information
phuang1024 committed Sep 14, 2021
1 parent 46c3f44 commit 5ebf86a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from deb import PyDeb
from whl import Wheel

VERSION = "0.3.2"
VERSION = "0.4.0"

PARENT = os.path.dirname(os.path.realpath(__file__))
with open(os.path.realpath(os.path.join(PARENT, "..", "requirements.txt")), "r") as fp:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Patrick Huang'

# The full version, including alpha/beta/rc tags
release = '0.3.2'
release = '0.4.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/pv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Import from Python to modify kernel behavior.
"""

__version__ = "0.3.2"
__version__ = "0.4.0"

from .props import *
from .types import *
Expand Down
2 changes: 1 addition & 1 deletion src/pvgui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from cli import cli
from gui import gui

VERSION = "0.3.2"
VERSION = "0.4.0"


def main():
Expand Down
2 changes: 1 addition & 1 deletion src/pvkernel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
This library is a Python module, and handles rendering, effects, MIDI parsing, etc.
"""

__version__ = "0.3.2"
__version__ = "0.4.0"

import os
from .startup import PARENT, build, register_addons
Expand Down

0 comments on commit 5ebf86a

Please sign in to comment.