From 3bd56b5d86c76351cf226681dbaf52f53254164e Mon Sep 17 00:00:00 2001
From: Simon Li <spli@dundee.ac.uk>
Date: Thu, 22 Aug 2024 11:19:41 +0100
Subject: [PATCH] Bump to 2.0.0

---
 jupyterhub_traefik_proxy/__init__.py | 2 +-
 pyproject.toml                       | 2 +-
 setup.py                             | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/jupyterhub_traefik_proxy/__init__.py b/jupyterhub_traefik_proxy/__init__.py
index 301eabf2..4ff7ed64 100644
--- a/jupyterhub_traefik_proxy/__init__.py
+++ b/jupyterhub_traefik_proxy/__init__.py
@@ -1,3 +1,3 @@
 """Traefik implementation of the JupyterHub proxy API"""
 
-__version__ = "1.1.0"
+__version__ = "2.0.0"
diff --git a/pyproject.toml b/pyproject.toml
index ad4e2131..8201f4cd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -58,7 +58,7 @@ testpaths = ["tests"]
 github_url = "https://github.com/jupyterhub/traefik-proxy"
 
 [tool.tbump.version]
-current = "1.1.0"
+current = "2.0.0"
 
 regex = '''
   (?P<major>\d+)
diff --git a/setup.py b/setup.py
index f2a26089..a856872f 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
 
 setup(
     name="jupyterhub-traefik-proxy",
-    version="1.1.0",
+    version="2.0.0",
     install_requires=open("requirements.txt").read().splitlines(),
     extras_require={
         "redis": ["redis"],