Skip to content

Commit

Permalink
HIIII! Fix wicense info x3
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpyChap committed Nov 7, 2020
1 parent 1d3247d commit d590646
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions owotext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

__title__ = 'owotext'
__author__ = 'DerpyChap'
__license__ = 'ISC'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 DerpyChap'
__version__ = '1.1.0'
__version__ = '1.1.1'

from collections import namedtuple
from .owo import OwO

VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')

version_info = VersionInfo(major=1, minor=1, micro=0, releaselevel='final', serial=0)
version_info = VersionInfo(major=1, minor=1, micro=1, releaselevel='final', serial=0)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def readme():


setup(name='owotext',
version='1.1.0',
version='1.1.1',
description='A Python library for converting text strings into OwO',
long_description=readme(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit d590646

Please sign in to comment.