Skip to content

Commit

Permalink
misc: support latest pkg:gcloud, other cleanup (#131)
Browse files Browse the repository at this point in the history
* misc: support latest pkg:gcloud, other cleanup

* Update CHANGELOG.md

* Update pubspec.yaml
  • Loading branch information
kevmoo authored and jcollins-g committed Aug 7, 2018
1 parent fe4d830 commit 5ad1009
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 22 deletions.
11 changes: 2 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
.buildlog
.DS_Store
.idea
.project
.pub/
.settings/
build
packages
.dart_tool/
.packages
pubspec.lock
.packages
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -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
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
3 changes: 0 additions & 3 deletions codereview.settings

This file was deleted.

7 changes: 5 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
name: rpc
version: 0.6.0-dev.1
version: 0.6.0
author: Dart Team <[email protected]>
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

0 comments on commit 5ad1009

Please sign in to comment.