Skip to content

Commit 6921d22

Browse files
pvcravenPaul V Craven
and
Paul V Craven
authored
Update version number to rc, and update release checklist (#2513)
* Update version number to rc, and update release checklist * Doc fixes, and library updates --------- Co-authored-by: Paul V Craven <[email protected]>
1 parent 3de6b5c commit 6921d22

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

RELEASE_CHECKLIST.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@
1414
11. Make sure last check-in ran clean on GitHub actions, viewable on Discord
1515
12. Merge development branch into maintenance.
1616
13. Add label to release
17-
14. Push code. Check for clean compile on GitHub.
18-
15. Type `make clean`
19-
16. Type `make dist`
20-
17. Type `make deploy_pypi`
17+
14. Push code. Check for "clean compile on GitHub.
18+
15. Run "Distribute built to PyPi Production" (See below for manual deployment)
2119
18. Confirm release notes appear on website.
2220
19. Announce on Arcade Discord, Python Discord, Reddit Python Arcade, etc.
21+
22+
## Manual Deployment
23+
24+
1. Type `make clean`
25+
2. Type `make dist`
26+
3. Type `make deploy_pypi`

arcade/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0-dev.43
1+
3.0.0-rc.1

arcade/text.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def create_text_sprite(
746746
Valid options: ``"left"``, ``"center"``, ``"right"``.
747747
font_name (optional): A font name, path to a font file, or list of names
748748
bold (optional): Whether to draw the text as bold, and if a string,
749-
how bold. See :py:attr:`.bold` to learn more.
749+
how bold. See :py:attr:`arcade.gui.widgets.text.bold` to learn more.
750750
italic (optional): Whether to draw the text as italic
751751
anchor_x (optional): How to calculate the anchor point's x coordinate.
752752
Options: "left", "center", or "right"
@@ -852,7 +852,7 @@ def draw_text(
852852
Valid options: ``"left"``, ``"center"``, ``"right"``.
853853
font_name (optional): A font name, path to a font file, or list of names
854854
bold (optional): Whether to draw the text as bold, and if a string,
855-
how bold. See :py:attr:`.bold` to learn more.
855+
how bold. See :py:attr:`arcade.gui.widgets.text.bold` to learn more.
856856
italic (optional): Whether to draw the text as italic
857857
anchor_x (optional): How to calculate the anchor point's x coordinate.
858858
Options: "left", "center", or "right"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ Book = "https://learn.arcade.academy"
4444
dev = [
4545
# --- Documentation: Sphinx 7 based currently
4646
"sphinx==8.1.3", # April 2024 | Updated 2024-07-15, 7.4+ is broken with sphinx-autobuild
47-
"sphinx_rtd_theme==3.0.1", # Nov 2024
47+
"sphinx_rtd_theme==3.0.2", # Nov 2024
4848
"sphinx-rtd-dark-mode==1.3.0",
4949
"sphinx-autobuild==2024.10.3", # April 2024 | Due to this, Python 3.10+ is required to serve docs
5050
"sphinx-copybutton==0.5.2", # April 2023
5151
"sphinx-sitemap==2.6.0", # April 2024
52-
"pygments==2.18.0", # 2.18 has breaking changes in lexer
52+
"pygments==2.19.1", # 2.18 has breaking changes in lexer
5353
"docutils==0.21.2", # ?
5454
# "pyyaml==6.0.1",
5555
# "readthedocs-sphinx-search==0.3.2",

0 commit comments

Comments
 (0)