Skip to content

Commit

Permalink
Update copyright year, changelog and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Jan 1, 2021
1 parent 5d8053f commit f77c4c6
Show file tree
Hide file tree
Showing 24 changed files with 43 additions and 34 deletions.
9 changes: 9 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ If you think anything is missing, make a merge request to add it, or contact tho

----

Version 0.0.57
==============

- Add `missing_args` parameter to :obj:`~lightbulb.errors.NotEnoughArguments`

- Fix `__iter__` for :obj:`~lightbulb.converters.WrappedArg`

- Improve :obj:`~lightbulb.command_handler.Bot.get_command` to allow you to get subcommands without having to call :obj:`~lightbulb.commands.Group.get_subcommand`

Version 0.0.56
==============

Expand Down
20 changes: 10 additions & 10 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@
Lightbulb
=========

Lightbulb is a command handler library designed for use with `Hikari <https://gitlab.com/nekokatt/hikari>`_
Lightbulb is a command handler library designed for use with `Hikari <https://github.com/hikari-py/hikari>`_

It aims to provide an easy to use interface for building commands with your bot.

This library is currently unfinished but you can help speed up the development by contributing and submitting merge requests to the repository.
It is working in its current state but I'd love to see more functionality added further down the line!

Repository: `View on GitLab <https://gitlab.com/tandemdude/lightbulb>`_
Repository: `View on GitHub <https://github.com/tandemdude/hikari-lightbulb>`_

Docs: `View Here <https://tandemdude.gitlab.io/lightbulb>`_
Docs: `View Here <https://hikari-lightbulb.readthedocs.io/>`_

If you need any help with this library or hikari at any point feel free to join the `Discord Server <https://discord.gg/Jx4cNGG>`_

If you think you have found a bug or other problem with the library, or you would like to suggest a feature,
you should submit an issue on the GitLab repository `here <https://gitlab.com/tandemdude/lightbulb/-/issues>`_.
you should submit an issue on the GitHub repository `here <https://github.com/tandemdude/hikari-lightbulb/issues>`_.
Before doing so you should make sure you are on the latest version of the library and check to see if an issue
already exists for your bug or feature.


**Contributors:**

- `thomm.o#8637 (creator) <https://gitlab.com/tandemdude>`_
- `thomm.o#8637 (creator) <https://github.com/tandemdude>`_

- `davfsa#7026 <https://gitlab.com/davfsa>`_
- `davfsa#7026 <https://github.com/davfsa>`_

- `nekoka#8788 <https://gitlab.com/nekokatt>`_

- `Forbidden#0001 <https://gitlab.com/Forbidden-A>`_
- `Forbidden#0001 <https://github.com/Forbidden-A>`_

- `Dec0Ded#2693 <https://gitlab.com/dec0ded>`_
- `Dec0Ded#2693 <https://github.com/Dec0Dedd>`_

- `Yoda#0660 <https://gitlab.com/YodaPY>`_
- `Yoda#0660 <https://github.com/YodaPY>`_

- `M.A#4999 <https://gitlab.com/MonAaraj>`_

Expand All @@ -52,9 +52,9 @@ already exists for your bug or feature.
:maxdepth: 2

getting-started
changelog
api-reference
utils-api-reference
custom-help
changelog

* :ref:`genindex`
4 changes: 2 additions & 2 deletions lightbulb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down Expand Up @@ -53,4 +53,4 @@
*events.__all__,
]

__version__ = "0.0.56"
__version__ = "0.0.57"
4 changes: 2 additions & 2 deletions lightbulb/checks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down Expand Up @@ -67,7 +67,7 @@ async def foo(ctx):
async def foo(ctx):
...
See https://tandemdude.gitlab.io/lightbulb/api-reference.html#module-lightbulb.checks
See https://hikari-lightbulb.readthedocs.io/en/latest/api-reference.html#module-lightbulb.checks
"""


Expand Down
2 changes: 1 addition & 1 deletion lightbulb/command_handler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/commands.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/context.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/converters.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/cooldowns.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/errors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/events.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/help.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/plugins.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/stringview.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/utils/nav.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/utils/pag.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion lightbulb/utils/search.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Hikari Command Handler.
#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_checks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_context.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_stringview.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright © Thomm.o 2020
# Copyright © Thomm.o 2021
#
# This file is part of Lightbulb.
#
Expand Down

0 comments on commit f77c4c6

Please sign in to comment.