Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
paramsingh committed Dec 11, 2021
1 parent 7952e22 commit 417a72f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = 'Param Singh'

# The full version, including alpha/beta/rc tags
release = '0.1.0'
release = pylistenbrainz.__version__


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions pylistenbrainz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

__version__ = '0.5.0'

from pylistenbrainz.client import ListenBrainz
from pylistenbrainz.listen import Listen
from pylistenbrainz.listen import LISTEN_TYPE_IMPORT, LISTEN_TYPE_PLAYING_NOW, LISTEN_TYPE_SINGLE
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import setuptools
import pylistenbrainz

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="pylistenbrainz",
version="0.4.0",
version=pylistenbrainz.__version__,
author="Param Singh",
author_email="[email protected]",
description="A simple ListenBrainz client library for Python",
Expand Down

0 comments on commit 417a72f

Please sign in to comment.