Commit e8c4a83f authored by George Kadianakis's avatar George Kadianakis
Browse files

Bump version to 0.1.9 -- first release with v3 support.

parent cf8cccfa
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -21,9 +21,9 @@ import sphinx.environment
from docutils.utils import get_source_line

# Documentation configuration
__version__ = '0.1.8'
__author__ = "Donncha O'Cearbhaill"
__contact__ = "donncha@donncha.is"
__version__ = '0.1.9'
__author__ = "George Kadianakis, Donncha O'Cearbhaill"
__contact__ = "asn@torproject.org"

# Ignore the 'dev' version suffix.
if __version__.endswith('dev'):
@@ -131,7 +131,7 @@ html_theme = 'alabaster'
# documentation.
html_theme_options = {
    "description": "Load balancing and redundancy for Tor hidden services.",
    'github_user': 'DonnchaC',
    'github_user': 'asn-d6',
    'github_repo': 'onionbalance',
    'github_button': False,
    'travis_button': False,
+2 −1
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@ load-balancing while also making onion services more resilient and reliable by
eliminating single points-of-failure.

- Latest release: |version| (:ref:`changelog`)
- GitHub: https://github.com/asn-d6/onionbalance/
- Repository: https://gitlab.torproject.org/asn/onionbalance
- GitHub mirror: https://github.com/asn-d6/onionbalance/
- Issue tracker: https://github.com/asn-d6/onionbalance/issues
- PyPI: **Not yet available**
- IRC: #tor-dev @ OFTC
+4 −2
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ Debian package for onionbalance v3 and hence we will have to do it using git.

.. code-block:: bash

   $ git clone https://github.com/asn-d6/onionbalance
   $ git clone https://gitlab.torproject.org/asn/onionbalance.git
   $ cd onionbalance
   $ sudo python3 setup.py install
   # Let's create an onionbalance config file
@@ -263,4 +263,6 @@ make sure that it's reachable all the time. Check your logs for any errors or
bugs and let me know if you see any. If you want you can make onionbalance
logging calmer by using the ``-v warning`` switch.

If you find bugs or do any quick bugfixes, please submit them over Github!
If you find bugs or do any quick bugfixes, please submit them over `Gitlab
<https://gitlab.torproject.org/asn/onionbalance>`_ or `Github
<https://github.com/asn-d6/onionbalance>`_!
+3 −4
Original line number Diff line number Diff line
# -*- coding: utf-8 -*-

__version__ = "0.1.8"
__author__ = "Donncha O'Cearbhaill"
__contact__ = "donncha@donncha.is"
__url__ = "https://github.com/DonnchaC/onionbalance"
__author__ = "George Kadianakis, Donncha O'Cearbhaill"
__contact__ = "asn@torproject.org"
__url__ = "https://github.com/asn-d6/onionbalance"
__license__ = "GPL"

from onionbalance._version import get_versions