Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
exit 1
fi

- name: Verify formatting
run: dart format --output=none --set-exit-if-changed lib test

- name: Analyze
run: dart analyze --fatal-infos --fatal-warnings

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.3.1]
- Recognized OSI MIT `LICENSE`, `dart format` applied across the package, and
added `repository` / `issue_tracker` / `documentation` / `topics` metadata
(improves pub.dev score). No API changes.

## [2.3.0]
Backwards compatible (additions + deprecations only).

Expand Down
22 changes: 21 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
strava-flutter is provided under a MIT License. Copyright (c) 2019 Patrick FINKELSTEIN
MIT License

Copyright (c) 2019-2026 Serdar Coşkun and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,11 @@ CI runs analysis and tests on every PR.
## Acknowledgements

- [@Birdyf](https://github.com/Birdyf) for the original package.
- Patrick Finkelstein, the package's original maintainer.
- [Joe Birch](https://github.com/hitherejoe/FlutterOAuth) — OAuth reference.
- Strava's published [Swagger spec](https://developers.strava.com/swagger/),
bundled and validated under [`openapi/`](openapi/).

## License

[MIT](LICENSE) — Copyright (c) 2019-present the strava_flutter contributors.
[MIT](LICENSE) — Copyright (c) 2019-present Serdar Coşkun and contributors.
2 changes: 1 addition & 1 deletion example/lib/api/api_models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ApiCall {
final bool isWrite;
final List<ApiParam> params;
final Future<dynamic> Function(StravaClient client, Map<String, dynamic> args)
run;
run;

const ApiCall({
required this.group,
Expand Down
Loading