aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/how to do a release
diff options
context:
space:
mode:
authorgarret1317 <garret@airmail.cc>2025-10-16 09:24:13 +0100
committergarret1317 <garret@airmail.cc>2025-10-16 09:24:13 +0100
commit5c7029e614ae162c5080e6a9619a86f0bb273e4f (patch)
tree679e317b0c4a3bddb8557f8187baed74a3124174 /how to do a release
parent8e0bcc6875922667b04c26129d7f2eb4aa36bd0b (diff)
parentbd3436ba0b71b2f87f83afd329a4ad202a59cedb (diff)
downloadyt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.tar.gz
yt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.tar.bz2
yt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.zip
Merge branch 'master' into aSmartPhone8
KNOWN ISSUE: TF30 doesn't work - account doesn't get passed to new auth API
Diffstat (limited to 'how to do a release')
-rw-r--r--how to do a release46
1 files changed, 0 insertions, 46 deletions
diff --git a/how to do a release b/how to do a release
deleted file mode 100644
index ca99af6..0000000
--- a/how to do a release
+++ /dev/null
@@ -1,46 +0,0 @@
-putting this here because i'll forget how to do it otherwise
-
-update the pyproject.toml
-tag it in git, eg v1.0
-
-## build the builds
-python3 -m build
-
-and then put BOTH items from `dist` into the pip index dir - ~/site2/yt-dlp-rajiko/pip/yt-dlp-rajiko/
-because without the .whl pip has to "build" it itself, with all the stuff that needs to be installed for that to work
-update the pip index html
-
-## update the changelog file
-
-~/site2/yt-dlp-rajiko/CHANGELOG
-
-```
-version number
-date (git log v1.0 --pretty --date=rfc2822)
-url: whl download link
-sha256: sha256 of the whl
-brief summary of the release
-can span multiple lines
-
-bullet points of changes, 1 per line
-simple present tense, third person singular - continue "this release...", eg..
-fixes a bug where the computer would explode
-makes downloading 5000x faster
-```
-
-./generate_changelog.py to make the new rss feed
-
-## update the website
-
-move the previous release into the "Previous releases" <details>
-update the sha256 (just sha256 command in the pip dir)
-update the whl link
-repeat for japanese version
-
-now push to the server
-
-## update github
-
-paste the changelog output into a github release, upload the new builds
-
-and thats probably all