fix(publish): v0.1.3

* keywords are no longer than 20 characters, which is a restriction
  cargo imposes
* don't use 'homepage' link in cargo.toml unless the homepage is
  non-empty
* Added all publish-results to mark the respective crate version

Related to #46
This commit is contained in:
Sebastian Thiel
2015-04-07 15:19:23 +02:00
parent 99f8b65f75
commit 3403bd1c5c
85 changed files with 3 additions and 8 deletions

View File

@@ -8,7 +8,6 @@ version = "0.1.3+20150206"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with cloudlatencytest (protocol v2)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/cloudlatencytest2"
homepage = ""
documentation = "http://byron.github.io/google-apis-rs/google-cloudlatencytest2"
license = "MIT"
keywords = ["cloudlatencytest", "google", "protocol", "web", "api"]

View File

@@ -8,7 +8,6 @@ version = "0.1.3+20150309"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with cloudsearch (protocol v1)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/cloudsearch1"
homepage = ""
documentation = "http://byron.github.io/google-apis-rs/google-cloudsearch1"
license = "MIT"
keywords = ["cloudsearch", "google", "protocol", "web", "api"]

View File

@@ -8,7 +8,6 @@ version = "0.1.3+20150401"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with dataflow (protocol v1b4)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/dataflow1_b4"
homepage = ""
documentation = "http://byron.github.io/google-apis-rs/google-dataflow1_b4"
license = "MIT"
keywords = ["dataflow", "google", "protocol", "web", "api"]

View File

@@ -11,7 +11,7 @@ repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/doubleclic
homepage = "https://developers.google.com/bid-manager/"
documentation = "http://byron.github.io/google-apis-rs/google-doubleclickbidmanager1"
license = "MIT"
keywords = ["doubleclickbidmanager", "google", "protocol", "web", "api"]
keywords = ["doubleclickbidmanage", "google", "protocol", "web", "api"]
[dependencies]
hyper = "*"

View File

@@ -8,7 +8,6 @@ version = "0.1.3+20150326"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with logging (protocol v1beta3)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/logging1_beta3"
homepage = ""
documentation = "http://byron.github.io/google-apis-rs/google-logging1_beta3"
license = "MIT"
keywords = ["logging", "google", "protocol", "web", "api"]

View File

@@ -8,7 +8,6 @@ version = "0.1.3+20150326"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with pubsub (protocol v1beta2)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/pubsub1_beta2"
homepage = ""
documentation = "http://byron.github.io/google-apis-rs/google-pubsub1_beta2"
license = "MIT"
keywords = ["pubsub", "google", "protocol", "web", "api"]

View File

@@ -10,12 +10,12 @@ version = "${util.crate_version()}"
authors = [${",\n ".join('"%s"' % a for a in cargo.authors)}]
description = "A complete library to interact with ${util.canonical_name()} (protocol ${version})"
repository = "${util.github_source_root_url()}"
% if documentationLink is not UNDEFINED:
% if documentationLink is not UNDEFINED and documentationLink:
homepage = "${documentationLink}"
% endif
documentation = "${cargo.doc_base_url}/${util.crate_name()}"
license = "${copyright.license_abbrev}"
keywords = ["${name}", ${", ".join(estr(cargo.keywords))}]
keywords = ["${name[:20]}", ${", ".join(estr(cargo.keywords))}]
[dependencies]
hyper = "*"