Skip to content

Commit e8d6ee5

Browse files
committed
Add topics.
Cleanup.
1 parent abcdbb3 commit e8d6ee5

16 files changed

+32
-30
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.0.2
4+
5+
- Add `topics` to `pubspec.yaml`.
6+
- Cleanup tests.
7+
- Expand environment SDK version constraints.
8+
- Update dependencies.
9+
310
## 1.0.1
411

512
- Initial release.

lib/src/holiday_event_api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class HolidayEventApi {
2121

2222
late final String _apiKey;
2323

24-
static const String version = '1.0.1';
24+
static const String version = '1.0.2';
2525
static const JsonDecoder _decoder = JsonDecoder();
2626
static const int _maxRedirects = 5;
2727

lib/src/model/alternate_name.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:equatable/equatable.dart';
22
import 'package:json_annotation/json_annotation.dart';
33

4-
// Generated with: flutter packages pub run build_runner build
4+
// Generated with: dart run build_runner build
55
// Each class needs:
66
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
77
part 'alternate_name.g.dart';

lib/src/model/event_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'package:holiday_event_api/src/model/pattern.dart';
77
import 'package:holiday_event_api/src/model/rich_text.dart';
88
import 'package:json_annotation/json_annotation.dart';
99

10-
// Generated with: flutter packages pub run build_runner build
10+
// Generated with: dart run build_runner build
1111
// Each class needs:
1212
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
1313
part 'event_info.g.dart';

lib/src/model/event_summary.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:equatable/equatable.dart';
22
import 'package:json_annotation/json_annotation.dart';
33

4-
// Generated with: flutter packages pub run build_runner build
4+
// Generated with: dart run build_runner build
55
// Each class needs:
66
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
77
part 'event_summary.g.dart';

lib/src/model/founder_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:equatable/equatable.dart';
22
import 'package:json_annotation/json_annotation.dart';
33

4-
// Generated with: flutter packages pub run build_runner build
4+
// Generated with: dart run build_runner build
55
// Each class needs:
66
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
77
part 'founder_info.g.dart';

lib/src/model/get_event_info_response.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:holiday_event_api/src/model/rate_limit.dart';
44
import 'package:holiday_event_api/src/model/standard_response.dart';
55
import 'package:json_annotation/json_annotation.dart';
66

7-
// Generated with: flutter packages pub run build_runner build
7+
// Generated with: dart run build_runner build
88
// Each class needs:
99
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
1010
part 'get_event_info_response.g.dart';

lib/src/model/get_events_response.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:holiday_event_api/src/model/rate_limit.dart';
44
import 'package:holiday_event_api/src/model/standard_response.dart';
55
import 'package:json_annotation/json_annotation.dart';
66

7-
// Generated with: flutter packages pub run build_runner build
7+
// Generated with: dart run build_runner build
88
// Each class needs:
99
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
1010
part 'get_events_response.g.dart';

lib/src/model/image_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:equatable/equatable.dart';
22
import 'package:json_annotation/json_annotation.dart';
33

4-
// Generated with: flutter packages pub run build_runner build
4+
// Generated with: dart run build_runner build
55
// Each class needs:
66
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
77
part 'image_info.g.dart';

lib/src/model/occurrence.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:equatable/equatable.dart';
22
import 'package:json_annotation/json_annotation.dart';
33

4-
// Generated with: flutter packages pub run build_runner build
4+
// Generated with: dart run build_runner build
55
// Each class needs:
66
// factory <CLASSNAME>.fromJson(Map<String, dynamic> json) => _$<CLASSNAME>FromJson(json);
77
part 'occurrence.g.dart';

0 commit comments

Comments
 (0)