Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ThexXTURBOXx committed Jun 13, 2023
1 parent ff33ca6 commit 13f3d24
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.1

* Support newer Dart and `http` versions.

## 2.1.0

* All DTOs can now be encoded to JSON, i.e. a `toJson` method was added to all of them.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add to ``pubspec.yaml``:

```yaml
dependencies:
openmensa: ^2.0.0
openmensa: ^2.1.1
```
**See [here](https://github.com/ThexXTURBOXx/dart-openmensa/blob/main/example/openmensa_example.dart) for a more detailed example!**
Expand Down
7 changes: 2 additions & 5 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
include: package:flutter_lints/flutter.yaml

analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: true
errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
Expand Down Expand Up @@ -122,7 +119,7 @@ linter:
- flutter_style_todos
- hash_and_equals
- implementation_imports
- invariant_booleans
# - invariant_booleans
- iterable_contains_unrelated_type
- join_return_with_assignment
- leading_newlines_in_multiline_strings
Expand Down Expand Up @@ -164,7 +161,7 @@ linter:
- prefer_constructors_over_static_methods
- prefer_contains
# - prefer_double_quotes
- prefer_equal_for_default_values
# - prefer_equal_for_default_values
- prefer_expression_function_bodies
- prefer_final_fields
- prefer_final_in_for_each
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: openmensa
description: A library which provides simple access to OpenMensa's API services for Dart.
version: 2.1.0
version: 2.1.1
homepage: https://github.com/ThexXTURBOXx/dart-openmensa
repository: https://github.com/ThexXTURBOXx/dart-openmensa
issue_tracker: https://github.com/ThexXTURBOXx/dart-openmensa/issues

environment:
sdk: '>=2.17.0 <3.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
equatable: ^2.0.3
http: ^0.13.3
http: '>=0.13.3 <2.0.0'

dev_dependencies:
flutter_lints: ^2.0.1

0 comments on commit 13f3d24

Please sign in to comment.