Skip to content

Commit

Permalink
Issue 179 - Dart 3
Browse files Browse the repository at this point in the history
  • Loading branch information
shamblett committed May 28, 2023
1 parent 9cbd91a commit e0db42b
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 82 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 9.0.0
Issue 179 - Dart 3

# 8.0.0
PR's 150, 152, 157, 158, 161, 149, 162, 163, 164, 165, 168, 167

Expand Down
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ linter:
- prefer_const_literals_to_create_immutables
- prefer_constructors_over_static_methods
- prefer_contains
- prefer_equal_for_default_values
- prefer_expression_function_bodies
- prefer_final_fields
- prefer_final_in_for_each
Expand Down
2 changes: 1 addition & 1 deletion lib/src/link-format/coap_web_link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import 'coap_link_format.dart';
import 'resources/coap_resource_attributes.dart';

/// This class can be used to programmatically browse a remote CoAP endoint.
class CoapWebLink extends Comparable<CoapWebLink> {
class CoapWebLink implements Comparable<CoapWebLink> {
/// Instantiates.
CoapWebLink(this._uri);

Expand Down
22 changes: 11 additions & 11 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: coap
description: A CoAP library for Dart. A full implementation of an IPV4/6 CoAP client
version: 8.0.0
version: 9.0.0
homepage: https://github.com/shamblett/coap
repository: https://github.com/shamblett/coap

funding:
- https://www.darticulate.com/#funding

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

dependencies:
build: ^2.3.1
collection: ^1.17.1
build: ^2.4.0
collection: ^1.17.2
convert: ^3.1.1
dtls2: ^0.13.4
dtls2: ^0.14.1
event_bus: ^2.0.0
meta: ^1.9.0
path: ^1.8.3
string_scanner: ^1.2.0
synchronized: ^3.0.1
typed_data: ^1.3.1
yaml: ^3.1.1
synchronized: ^3.1.0
typed_data: ^1.3.2
yaml: ^3.1.2

dev_dependencies:
build_runner: ^2.3.3
lints: ^2.0.1
test: ^1.24.0
build_runner: ^2.4.4
lints: ^2.1.0
test: ^1.24.3
Loading

0 comments on commit e0db42b

Please sign in to comment.