Skip to content

Commit e1720c8

Browse files
authored
Update branch references and links (#791)
1 parent 64555ff commit e1720c8

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Check Release
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ["1.x"]
55
pull_request:
6-
branches: ["*"]
76

87
jobs:
98
check_release:

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Jupyter Server Integration Tests [Linux]
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ["1.x"]
55
pull_request:
6-
branches: ["*"]
6+
77
jobs:
88
build:
99
runs-on: ${{ matrix.os }}

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Jupyter Server Tests
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ["1.x"]
55
pull_request:
66
schedule:
77
- cron: "0 8 * * *"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Jupyter Server
22

3-
[![Build Status](https://github.com/jupyter/jupyter_server/workflows/CI/badge.svg?query=branch%3Amain++)](https://github.com/jupyter-server/jupyter_server/actions?query=branch%3Amain++)
4-
[![Documentation Status](https://readthedocs.org/projects/jupyter-server/badge/?version=latest)](http://jupyter-server.readthedocs.io/en/latest/?badge=latest)
3+
[![Build Status](https://github.com/jupyter/jupyter_server/workflows/CI/badge.svg?query=branch%3A1.x++)](https://github.com/jupyter-server/jupyter_server/actions?query=branch%3A1.x++)
4+
[![Documentation Status](https://readthedocs.org/projects/jupyter-server/badge/?version=stable)](http://jupyter-server.readthedocs.io/en/latest/?badge=stable)
55

66
The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila.
77

8-
For more information, read our [documentation here](http://jupyter-server.readthedocs.io/en/latest/?badge=latest).
8+
For more information, read our [documentation here](http://jupyter-server.readthedocs.io/en/stable/?badge=latest).
99

1010
## Installation and Basic usage
1111

@@ -22,7 +22,7 @@ If Jupyter Server is a dependency of your project/application, it is important t
2222

2323
When a new minor version is released on PyPI, a branch for that version will be created in this repository, and the version of the main branch will be bumped to the next minor version number. That way, the main branch always reflects the latest un-released version.
2424

25-
To see the changes between releases, checkout the [CHANGELOG](https://github.com/jupyter/jupyter_server/blob/main/CHANGELOG.md).
25+
To see the changes between releases, checkout the [CHANGELOG](https://github.com/jupyter/jupyter_server/blob/1.x/CHANGELOG.md).
2626

2727
## Usage - Running Jupyter Server
2828

@@ -34,7 +34,7 @@ Launch with:
3434

3535
### Testing
3636

37-
See [CONTRIBUTING](https://github.com/jupyter-server/jupyter_server/blob/main/CONTRIBUTING.rst#running-tests).
37+
See [CONTRIBUTING](https://github.com/jupyter-server/jupyter_server/blob/1.x/CONTRIBUTING.rst#running-tests).
3838

3939
## Contributing
4040

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Jupyter Server Docs Sources
22

3-
Read [this page](https://jupyter-server.readthedocs.io/en/latest/contributors/contributing.html#building-the-docs) to build the docs.
3+
Read [this page](https://jupyter-server.readthedocs.io/en/stable/contributors/contributing.html#building-the-docs) to build the docs.

docs/source/developers/extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Server Extensions
55
A Jupyter Server extension is typically a module or package that extends to Server’s REST API/endpoints—i.e. adds extra request handlers to Server’s Tornado Web Application.
66

77
You can check some simple examples on the `examples folder
8-
<https://github.com/jupyter/jupyter_server/tree/main/examples/simple>`_ in the GitHub jupyter_server repository.
8+
<https://github.com/jupyter/jupyter_server/tree/1.x/examples/simple>`_ in the GitHub jupyter_server repository.
99

1010
Authoring a basic server extension
1111
==================================

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Jupyter Server is the backend—the core services, APIs, and `REST endpoints`_
1919

2020
.. _Tornado: https://www.tornadoweb.org/en/stable/
2121
.. _Jupyter Notebook: https://github.com/jupyter/notebook
22-
.. _REST endpoints: https://petstore.swagger.io/?url=https://raw.githubusercontent.com/jupyter/jupyter_server/main/jupyter_server/services/api/api.yaml
22+
.. _REST endpoints: https://petstore.swagger.io/?url=https://raw.githubusercontent.com/jupyter/jupyter_server/1.x/jupyter_server/services/api/api.yaml
2323

2424
Who's this for?
2525
---------------

0 commit comments

Comments
 (0)