Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve bundle release notes #367

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion adabot/circuitpython_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,21 @@ def new_release(bundle, bundle_path):
" especially important for non-express boards with limited flash, such as the"
" [Trinket M0](https://www.adafruit.com/product/3500),"
" [Gemma M0](https://www.adafruit.com/product/3501) and"
" [Feather M0 Basic](https://www.adafruit.com/product/2772)."
" [Feather M0 Basic](https://www.adafruit.com/product/2772).\n"
)

release_description.append(
"To automate the use of bundles, including the Adafruit CircuitPython Bundle"
" and the Community Bundle, install [circup](https://pypi.org/project/circup/)"
" using pip or pipx."
" This command-line tool allows you to install packages from the bundle to your CIRCUITPY"
" drive without manually downloading anything.\n"
)

release_description.append(
"To download the libraries as Python source code, use the link containing 'bundle-py'."
" Due to github's technical limitations, the 'Source code (zip)' and 'Source code (tar.gz')"
" links do not contain the library source code and cannot be hidden by project admins."
)

release = {
Expand Down