Skip to content

Commit 88d5efa

Browse files
committed
Switch default branch to main from master
The former is quickly becoming the conventional choice and by switching wsproto will likely match other projects the maintainers use.
1 parent d970644 commit 88d5efa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: ["master"]
5+
branches: ["main"]
66
pull_request:
7-
branches: ["master"]
7+
branches: ["main"]
88

99
jobs:
1010
tox:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pure Python, pure state-machine WebSocket implementation
55
.. image:: https://github.com/python-hyper/wsproto/workflows/CI/badge.svg
66
:target: https://github.com/python-hyper/wsproto/actions
77
:alt: Build Status
8-
.. image:: https://codecov.io/gh/python-hyper/wsproto/branch/master/graph/badge.svg
8+
.. image:: https://codecov.io/gh/python-hyper/wsproto/branch/main/graph/badge.svg
99
:target: https://codecov.io/gh/python-hyper/wsproto
1010
:alt: Code Coverage
1111
.. image:: https://readthedocs.org/projects/wsproto/badge/?version=latest

docs/source/basic-usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ the data currently in the ``wsproto`` internal buffer and then exit. Therefore,
121121
you should iterate over this generator after receiving new network data.
122122

123123
For a more complete example, see `synchronous_client.py
124-
<https://github.com/python-hyper/wsproto/blob/master/example/synchronous_client.py>`_.
124+
<https://github.com/python-hyper/wsproto/blob/main/example/synchronous_client.py>`_.
125125

126126
WebSocket Servers
127127
-----------------
@@ -150,7 +150,7 @@ Alternatively a server can explicitly reject the connection by sending
150150
receiving a ``Request`` event.
151151

152152
For a more complete example, see `synchronous_server.py
153-
<https://github.com/python-hyper/wsproto/blob/master/example/synchronous_server.py>`_.
153+
<https://github.com/python-hyper/wsproto/blob/main/example/synchronous_server.py>`_.
154154

155155
Protocol Errors
156156
---------------

0 commit comments

Comments
 (0)