Skip to content

Commit 168d247

Browse files
committed
call it 1.0
1 parent ece1700 commit 168d247

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

docs/source/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ For detailed changes from the prior release, click on the version number
44
and its link will bring up a GitHub listing of changes. Use `git log` on
55
the command line for details.
66

7-
### 0.4.0 (prerelease)
7+
### 1.0.0 (prerelease)
88

9-
0.4 is a big release for jupyterhub-traefik-proxy!
9+
1.0.0 is a big release for jupyterhub-traefik-proxy!
1010
It updates support for traefik to version 2.x (current: 2.9.8).
1111
Traefik versions < 2.0 are no longer supported.
1212
If you have custom traefik configuration,
@@ -29,7 +29,7 @@ Major changes:
2929

3030
Performance and responsiveness is also greatly improved.
3131

32-
([full changelog](https://github.com/jupyterhub/traefik-proxy/compare/0.3.0...ec8eadcc7d274911d8e5bdcbed9082c02edd642f))
32+
([full changelog](https://github.com/jupyterhub/traefik-proxy/compare/0.3.0...HEAD))
3333

3434
#### API and Breaking Changes
3535

jupyterhub_traefik_proxy/consul.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ def _provider_name(self):
6262
)
6363

6464
kv_url = Unicode("DEPRECATED", config=True).tag(
65-
deprecated_in="0.4",
65+
deprecated_in="1.0",
6666
deprecated_for="consul_url",
6767
)
6868
kv_username = Unicode("DEPRECATED", config=True).tag(
69-
deprecated_in="0.4",
69+
deprecated_in="1.0",
7070
deprecated_for="consul_username",
7171
)
7272
kv_password = Unicode("DEPRECATED", config=True).tag(
73-
deprecated_in="0.4",
73+
deprecated_in="1.0",
7474
deprecated_for="consul_password",
7575
)
7676

jupyterhub_traefik_proxy/etcd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ def _default_executor(self):
9797
)
9898

9999
kv_url = Unicode("DEPRECATED", config=True).tag(
100-
deprecated_in="0.4",
100+
deprecated_in="1.0",
101101
deprecated_for="etcd_url",
102102
)
103103
kv_username = Unicode("DEPRECATED", config=True).tag(
104-
deprecated_in="0.4",
104+
deprecated_in="1.0",
105105
deprecated_for="etcd_username",
106106
)
107107
kv_password = Unicode("DEPRECATED", config=True).tag(
108-
deprecated_in="0.4",
108+
deprecated_in="1.0",
109109
deprecated_for="etcd_password",
110110
)
111111

jupyterhub_traefik_proxy/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def _concurrency_changed(self, change):
6666
config=True,
6767
help="Deprecated. Use static_config_file",
6868
).tag(
69-
deprecated_in="0.4",
69+
deprecated_in="1.0",
7070
deprecated_for="static_config_file",
7171
)
7272

jupyterhub_traefik_proxy/toml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ class TraefikTomlProxy(TraefikFileProviderProxy):
99
toml_dynamic_config_file = Unicode(
1010
config=True,
1111
).tag(
12-
deprecated_in="0.4",
12+
deprecated_in="1.0",
1313
deprecated_for="TraefikFileProvider.dynamic_config_file",
1414
)
1515

1616
def __init__(self, **kwargs):
1717
super().__init__(**kwargs)
1818
self.log.warning(
19-
"TraefikTomlProxy is deprecated in jupyterhub-traefik-proxy 0.4. Use `c.JupyterHub.proxy_class = 'traefik_file'"
19+
"TraefikTomlProxy is deprecated in jupyterhub-traefik-proxy 1.0. Use `c.JupyterHub.proxy_class = 'traefik_file'"
2020
)

0 commit comments

Comments
 (0)