Fix travis (#8)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31d256c..d21ef9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## 0.1.1+1
+
+* Fix documentation link
+
 ## 0.1.1
 
 * Add basic Utf16 support
diff --git a/lib/src/utf8.dart b/lib/src/utf8.dart
index 9fcc823..c8abc36 100644
--- a/lib/src/utf8.dart
+++ b/lib/src/utf8.dart
@@ -55,8 +55,7 @@
   /// Returns a malloc-allocated pointer to the result.
   static Pointer<Utf8> toUtf8(String string) {
     final units = utf8.encode(string);
-    final Pointer<Uint8> result =
-        allocate<Uint8>(count: units.length + 1);
+    final Pointer<Uint8> result = allocate<Uint8>(count: units.length + 1);
     final Uint8List nativeString =
         result.asExternalTypedData(count: units.length + 1);
     nativeString.setAll(0, units);
diff --git a/pubspec.yaml b/pubspec.yaml
index 48e3abc..6a47ac7 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,12 @@
 name: ffi
-version: 0.1.1
+version: 0.1.1+1
 author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/ffi
 description: Utilities for working with Foreign Function Interface (FFI) code.
 
 environment:
-  sdk: '>=2.5.0-dev.2.1 <3.0.0'
-documentation: http://www.dartdocs.org/documentation/ffi/latest
+  sdk: '>=2.5.0 <3.0.0'
+documentation: https://pub.dev/documentation/ffi/
 
 dependencies: