diff --git a/.gitignore b/.gitignore index 22d2bf0..49ce72d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,3 @@ -.buildlog -.DS_Store -.idea -.project -.pub/ -.settings/ -build -packages +.dart_tool/ +.packages pubspec.lock -.packages \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 98e1232..1415884 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,15 @@ language: dart + dart: - - dev + - stable + dart_task: - test: --platform vm + +# Only building master means that we don't run two builds for each pull request. +branches: + only: [master] + cache: directories: - $HOME/.pub-cache diff --git a/CHANGELOG.md b/CHANGELOG.md index f9fcb5e..a605395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,6 @@ -# Changelog - -## 0.6.0-dev.1 - -- Minor cleanups for type resolution in ApiProperty-related classes. - -## 0.6.0-dev.0 +## 0.6.0 +- Support latest `package:gcloud`. - Many internal changes for Dart 2.0. This version will no longer run on Dart 1.x. - ApiProperty declarations for 64 bit integers now require BigInt type, and clients must use Strings for minValue, maxValue, and defaultValue. diff --git a/codereview.settings b/codereview.settings deleted file mode 100644 index 73f84af..0000000 --- a/codereview.settings +++ /dev/null @@ -1,3 +0,0 @@ -CODE_REVIEW_SERVER: https://codereview.chromium.org -VIEW_VC: https://github.com/dart-lang/rpc/commit/ -CC_LIST: reviews@dartlang.org diff --git a/pubspec.yaml b/pubspec.yaml index 5dbb710..4ba3d98 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,21 +1,24 @@ name: rpc -version: 0.6.0-dev.1 +version: 0.6.0 author: Dart Team description: Library for exposing Dart server-side APIs. homepage: https://github.com/dart-lang/rpc + environment: sdk: '>=2.0.0-dev.69.0 <3.0.0' + dependencies: args: ^1.4.4 collection: '>=1.1.1 <2.0.0' convert: ^2.0.1 crypto: '>=1.0.0 <3.0.0' discoveryapis_generator: ^0.9.8 - gcloud: '>=0.2.0+12 <0.6.0' + gcloud: '>=0.2.0+12 <0.7.0' http_parser: '>=2.0.0 <4.0.0' logging: '>=0.9.3 <0.12.0' mime: '>=0.9.3 <1.0.0' path: '>=1.3.4 <2.0.0' uri: ^0.11.3 + dev_dependencies: test: ^1.2.0