Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/url-launcher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

## [0.2.0] - 2017-04-24

* Change `launch` to a top-level method instead of a static method in a class.

## [0.1.1] - 2017-04-21

* Change to README.md

## [0.1.0] - 2017-04-20

* Initial Open Source release.
2 changes: 1 addition & 1 deletion packages/url-launcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void main() {
}

launchURL() {
UrlLauncher.launch('https://flutter.io');
launch('https://flutter.io');
}

```
Expand Down
2 changes: 1 addition & 1 deletion packages/url-launcher/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: url_launcher

version: 0.1.1
version: 0.2.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.2.0?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes!

description: Flutter plugin for launching a URL
author: Flutter Team <[email protected]>
homepage: https://github.com/flutter/plugins
Expand Down