Skip to content
24 changes: 24 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
# Documentation released under the MIT license (see LICENSE)

# Image to build doc
FROM python:3.6-alpine3.6 as BUILDER
RUN apk update \
&& apk add git bash make
RUN pip install invoke virtualenv
COPY ./requirements-docs.txt /requirements-docs.txt
RUN pip install -r /requirements-docs.txt
COPY ./ /botogram
RUN cd /botogram && invoke docs && cd .netlify && make

RUN apk add tree
RUN tree /botogram/.netlify/build

# Image final
FROM nginx:latest
ENV botogram_version dev
RUN rm /etc/nginx/conf.d/default.conf
ADD https://gist.githubusercontent.com/matteb99/4ab0dffc07558273401220f3e0426f5a/raw/7fc18180327f57b6ab8bbbad9f629a0e5955a4a1/gistfile1.txt /etc/nginx/conf.d/default.conf
RUN sed 's/RELEASE/'"$botogram_version"'/g' -i /etc/nginx/conf.d/default.conf
COPY --from=BUILDER /botogram/.netlify/build/ ./botogram

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if __name__ == "__main__":
bot.run()
```

You can find the documentation at [botogram.pietroalbini.org][2]. Also, you can
You can find the documentation at [botogram.dev][2]. Also, you can
get all the news about botogram in its [Telegram channel][channel].

> Please note botogram currently doesn't support some of the upstream API
Expand Down Expand Up @@ -51,6 +51,6 @@ On some Linux systems you might need to wrap the ``invoke install`` command with
``sudo``, if you don't have root privileges.

[1]: https://core.telegram.org/bots
[2]: https://botogram.pietroalbini.org/docs
[2]: https://botogram.dev/docs
[3]: http://www.pyinvoke.org
[channel]: https://telegram.me/botogram_framework
2 changes: 1 addition & 1 deletion botogram/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/bot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/commands.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/components.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/context.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/crypto.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/decorators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/defaults.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/frozenbot.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/hooks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/messages.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/chats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/markup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/media.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/messages.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/mixins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/objects/updates.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/runner/ipc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/runner/jobs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/runner/processes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/runner/shared.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/shared.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/syntaxes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/updates.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/utils/calls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/utils/deprecations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/utils/startup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion botogram/utils/strings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docs/_templates/links.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<h3>Some useful links</h3>
<ul>
<li><a href="http://botogram.pietroalbini.org">
<li><a href="http://botogram.dev">
Micro website
</a></li>
<li><a href="https://pypi.python.org/pypi/botogram">
Expand Down
2 changes: 1 addition & 1 deletion docs/api/bot.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. api-bot::
Expand Down
2 changes: 1 addition & 1 deletion docs/api/buttons.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _api-buttons:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/channels.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _api-channels:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/components.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _api-components:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _api:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/telegram.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _api-telegram:
Expand Down
2 changes: 1 addition & 1 deletion docs/api/utility.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. api-utility::
Expand Down
2 changes: 1 addition & 1 deletion docs/bot-creation.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _bot-creation:
Expand Down
2 changes: 1 addition & 1 deletion docs/bot-structure.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _bot-structure:
Expand Down
2 changes: 1 addition & 1 deletion docs/buttons.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _buttons:
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.1.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.2.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.3.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.4.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.5.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.6.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

===========================
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _changelog:
Expand Down
2 changes: 1 addition & 1 deletion docs/channels.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
.. Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
Documentation released under the MIT license (see LICENSE)

.. _channels:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Copyright (c) 2015-2018 The Botogram Authors (see AUTHORS)
# Copyright (c) 2015-2019 The Botogram Authors (see AUTHORS)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -33,7 +33,7 @@
master_doc = "index"

project = "botogram"
copyright = "2015-2018 Pietro Albini"
copyright = "2015-2019 The Botogram Authors"
author = "Pietro Albini"

version = "0.5"
Expand Down
Loading