Skip to content

Commit

Permalink
Bump to version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgan committed Dec 7, 2018
1 parent d0a57f2 commit a9b6ff8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,11 @@
0.1.0 (2018-12-07)
==================

- Add logger
- Add notifier
- Add parser


0.0.1 (2017-09-04)
==================

Expand Down
2 changes: 1 addition & 1 deletion loguru/__init__.py
Expand Up @@ -11,7 +11,7 @@
from ._notifier import Notifier as _Notifier
from ._parser import Parser as _Parser

__version__ = "0.0.1"
__version__ = "0.1.0"

logger = _Logger({}, None, False, False, False, False, 0)
notifier = _Notifier()
Expand Down
14 changes: 14 additions & 0 deletions setup.py
Expand Up @@ -16,6 +16,7 @@
setup(
name="loguru",
version=version,
packages=["loguru"],
description="Python logging made (stupidly) simple",
long_description=readme,
author="Delgan",
Expand All @@ -24,6 +25,18 @@
download_url="https://github.com/Delgan/loguru/archive/{}.tar.gz".format(version),
keywords=["loguru", "logging", "logger", "log", "parser", "notifier"],
license="MIT license",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
],
install_requires=[
"ansimarkup>=1.4.0",
"better_exceptions_fork>=0.2.1.post6",
Expand All @@ -42,4 +55,5 @@
"sphinx-rtd-theme>=0.3",
]
},
python_requires=">=3.6",
)

0 comments on commit a9b6ff8

Please sign in to comment.