-
Notifications
You must be signed in to change notification settings - Fork 1
chore(release): licence, MSRV, packaging and CI gates for 0.1.0 #14
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: cargo | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 5 | ||
| groups: | ||
| # One PR for routine patch/minor bumps; majors still arrive individually so | ||
| # they get read properly. reqwest 0.12 -> 0.13 sat unnoticed for eight months. | ||
| minor-and-patch: | ||
| update-types: [minor, patch] | ||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| schedule: | ||
| interval: weekly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to this crate are documented here. The format follows | ||
| [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project follows | ||
| [Semantic Versioning](https://semver.org/spec/v2.0.0.html) — while on `0.x`, breaking | ||
| changes land in minor releases. | ||
|
|
||
| ## [Unreleased] | ||
|
|
||
| ## [0.1.0] - 2026-08-12 | ||
|
|
||
| First release. | ||
|
|
||
| ### Added | ||
|
|
||
| - Tone browse and search via a fluent `client.tones()` builder — the same endpoint serves | ||
| both, so omitting the query browses. Filters for gear, format, size, tag, make, creator, | ||
| architecture, sort and pagination. | ||
| - `client.tone(id)` for tone detail, `client.created()` and `client.favorited()` for the | ||
| authenticated user's tones, `client.models(tone_id)` and `client.model(id)` for models, | ||
| `client.user()` and `client.users()` for profiles and the public directory. | ||
| - Model downloads: `download_model`, `download_model_json`, and `download_model_to` for | ||
| streaming to any `AsyncWrite`, plus `download_url`/`download_url_to` for a stored URL. | ||
| - OAuth 2.0 + PKCE: `pkce::generate`, `oauth::authorize_url`, `Client::exchange_code` and | ||
| `Client::refresh`, with optional proactive refresh, one retry on a 401, and an | ||
| `on_tokens_changed` callback. The app owns the redirect transport. | ||
| - Typed models with lenient deserialization, open enums carrying an `Other(String)` for | ||
| values this version does not know, and `Page<T>` with `has_next()`/`has_prev()`. | ||
| - Three runnable examples: `oauth_desktop`, `search_and_download`, `play_with_nam_rs`. | ||
|
|
||
| ### Notes | ||
|
|
||
| - Every endpoint requires an end-user OAuth access token; there is no anonymous access. | ||
| - `client.models(id)` returns one architecture at a time — the API defaults to v1 and has | ||
| no "all" option. | ||
| - `Tone::models_count` means the cross-architecture total in search results and the v1 | ||
| count in tone detail. | ||
| - Not yet covered: `/tones/trending`, `/tones/latest`, `/tones/downloaded`, `/makes`, | ||
| `/tags`, and the API's deprecation headers. See issues #9–#12. | ||
|
|
||
| [Unreleased]: https://github.com/OpenSauce/tone3000-rs/compare/v0.1.0...HEAD | ||
| [0.1.0]: https://github.com/OpenSauce/tone3000-rs/releases/tag/v0.1.0 |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.