Skip to content

Commit e8c0840

Browse files
authored
Merge pull request #233 from jtpio/master-refs
2 parents 68bb703 + b04b3db commit e8c0840

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Tests
22
on:
33
push:
4-
branches: ["master"]
4+
branches: ["main"]
55
pull_request:
66
branches: ["*"]
77
jobs:
@@ -75,7 +75,6 @@ jobs:
7575
env:
7676
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
RH_REPOSITORY: jupyter-server/jupyter_releaser
78-
RH_BRANCH: master
7978
RH_SINCE: v0.3.0
8079
RH_UNTIL: v0.4.0
8180
run: |

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can also invoke the pre-commit hook manually at any time with
3838
pre-commit run
3939
```
4040

41-
Once you have done this, you can launch the master branch of Jupyter Releaser
41+
Once you have done this, you can launch the main branch of Jupyter Releaser
4242
from any directory in your system with::
4343

4444
```bash

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
html_context = {
7676
"github_user": "jupyterlab", # Username
7777
"github_repo": "jupyterlab_server", # Repo name
78-
"github_version": "master", # Version
78+
"github_version": "main", # Version
7979
"doc_path": "/docs/source/", # Path in the checkout to the docs root
8080
}
8181

docs/source/how_to_guides/convert_repo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ B. Prep target repository:
4343
- We recommend [MyST](https://myst-parser.readthedocs.io/en/latest/?badge=latest), especially if some of your docs are in reStructuredText.
4444
- Can use `pandoc -s changelog.rst -o changelog.md` and some hand edits as needed.
4545
- Note that [directives](https://myst-parser.readthedocs.io/en/latest/using/syntax.html#syntax-directives) can still be used
46-
- [ ] Add HTML start and end comment markers to Changelog file - see example in [CHANGELOG.md](https://github.com/jupyter-server/jupyter_releaser/blob/master/CHANGELOG.md) (view in raw mode)
47-
- [ ] Add [tbump](https://github.com/tankerhq/tbump) support if using Python - see example metadata in [pyproject.toml](https://github.com/jupyter-server/jupyter_releaser/blob/master/pyproject.toml)
48-
- We recommend putting `setuptools` metadata in `setup.cfg` and using `version = attr: <package_name>.__version__`, see example [`setup.cfg`](https://github.com/jupyter-server/jupyter_releaser/blob/master/setup.cfg)
46+
- [ ] Add HTML start and end comment markers to Changelog file - see example in [CHANGELOG.md](https://github.com/jupyter-server/jupyter_releaser/blob/main/CHANGELOG.md) (view in raw mode)
47+
- [ ] Add [tbump](https://github.com/tankerhq/tbump) support if using Python - see example metadata in [pyproject.toml](https://github.com/jupyter-server/jupyter_releaser/blob/main/pyproject.toml)
48+
- We recommend putting `setuptools` metadata in `setup.cfg` and using `version = attr: <package_name>.__version__`, see example [`setup.cfg`](https://github.com/jupyter-server/jupyter_releaser/blob/main/setup.cfg)
4949
- See documentation on `setup.cfg` [metadata](https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html)
5050
- If previously providing `version_info` like `version_info = (1, 7, 0, '.dev', '0')`, use tbump config like the one below:
5151

0 commit comments

Comments
 (0)