Skip to content

Commit

Permalink
Update package metadata for publication and fix package validation is…
Browse files Browse the repository at this point in the history
…sues (#9)
  • Loading branch information
diegov authored Sep 23, 2021
1 parent 71e7d6a commit 1fc1bf2
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 15 deletions.
Empty file added rollbar_dart/.pubignore
Empty file.
2 changes: 1 addition & 1 deletion rollbar_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.1.0
## 0.1.0-beta

- Initial version of rollbar-dart.
1 change: 1 addition & 0 deletions rollbar_dart/lib/rollbar_dart.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export 'rollbar.dart';
2 changes: 1 addition & 1 deletion rollbar_dart/lib/src/core_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CoreNotifier {
final Sender _sender;
final Transformer _transformer;

static const NOTIFIER_VERSION = '0.1.0';
static const NOTIFIER_VERSION = '0.1.0-beta';
static const NOTIFIER_NAME = 'rollbar-dart';

CoreNotifier(this._config)
Expand Down
7 changes: 4 additions & 3 deletions rollbar_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: rollbar_dart
description: Connect your Dart applications to Rollbar for error reporting
version: 0.1.0
author:
homepage:
version: 0.1.0-beta
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#dart
repository: https://github.com/rollbar/rollbar-flutter

environment:
sdk: '>=2.8.1 <3.0.0'
Expand Down
6 changes: 6 additions & 0 deletions rollbar_flutter/.pubignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Not working yet, will be enabeld when we get emulators running in CI runners
example/test/widget_test.dart
# Workaround for `pub` not applying .gitignore correctly
build
example/build

2 changes: 1 addition & 1 deletion rollbar_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.1.0
## 0.1.0-beta

- Initial version of rollbar-flutter.
1 change: 0 additions & 1 deletion rollbar_flutter/example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ app.*.symbols
# Obfuscation related
app.*.map.json

android/
symbols/
1 change: 1 addition & 0 deletions rollbar_flutter/lib/rollbar_flutter.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export 'rollbar.dart';
13 changes: 5 additions & 8 deletions rollbar_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: rollbar_flutter
description: Connect your Flutter applications to Rollbar for error reporting.
version: 0.1.0
author:
homepage:
version: 0.1.0-beta
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#flutter
repository: https://github.com/rollbar/rollbar-flutter

environment:
sdk: ">=2.7.0 <3.0.0"
Expand All @@ -11,13 +12,9 @@ environment:
dependencies:
flutter:
sdk: flutter
rollbar_dart: ">=0.1.0 <0.2.0"
rollbar_dart: ">=0.1.0-beta <0.2.0"
logging: ^0.11.4

dependency_overrides:
rollbar_dart:
path: ../rollbar_dart

dev_dependencies:
flutter_test:
sdk: flutter
Expand Down

0 comments on commit 1fc1bf2

Please sign in to comment.