Skip to content

Commit

Permalink
Preparing for version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Dec 21, 2019
1 parent bb4a688 commit 12d3667
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/offerings_wrapper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ class Offerings {
final Map<String, Offering> all;

Offerings.fromJson(Map<dynamic, dynamic> map)
: current = map['current'] != null ? Offering.fromJson(map['current']) : null,
: current =
map['current'] != null ? Offering.fromJson(map['current']) : null,
all = (map['all'] as Map<dynamic, dynamic>).map(
(key, value) => MapEntry(key as String, Offering.fromJson(value)));

Expand Down
2 changes: 0 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: purchases_flutter
description: Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!
version: 1.0.3
authors:
- RevenueCat <support@revenuecat.com>
homepage: https://www.revenuecat.com/
repository: https://github.com/RevenueCat/purchases-flutter
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
Expand Down

0 comments on commit 12d3667

Please sign in to comment.