Skip to content

Commit

Permalink
Ver 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sas2k committed Jun 22, 2022
1 parent 61bcc51 commit f7be075
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Pull requests are welcome. For major changes, please open an issue first to disc
Please make sure to update tests as appropriate.

## License
[MIT](LICENSE)
[MIT](https://github.com/Sas2k/xkcd-python/blob/main/LICENSE)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "xkcd-python"
version = "2.1.0"
description = "A wrapper for xkcd.com's API. Built Using Python."
authors = ["Sasen Perera <sasen.learnings@gmail.com>"]
license = "MIT"
license = "https://github.com/Sas2k/xkcd-python/blob/main/LICENSE"
readme = "README.md"

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
# the name must match the folder name 'verysimplemodule'
name= "xkcd_python",
version= "2.1.0",
version= "2.2.0",
author= xkcd_python.__author__,
author_email= "sasen.learnings@gmail.com",
description= xkcd_python.__shot_des__,
Expand Down
6 changes: 4 additions & 2 deletions xkcd_python/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from xkcd import Client
from xkcd import xkcd

__version__ = '2.1.0'
Client = xkcd

__version__ = '2.2.0'
__author__ = "Sasen Perera"
__shot_des__ = "A python wrapper for xkcd.com"
__description__ = "A wrapper for xkcd.com's API. Built Using Python."
2 changes: 1 addition & 1 deletion xkcd_python/xkcd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from requests import *
from random import *

class Client():
class xkcd():
def __init__(self) -> None:
pass

Expand Down

0 comments on commit f7be075

Please sign in to comment.