Skip to content

Commit 80bd69c

Browse files
authored
release(v0.2.0): Prepare v0.2.0 release (#45)
* release(v0.2.0): Prepare v0.2.0 release * fix: Fixed version number in Cargo.toml
1 parent 332436f commit 80bd69c

File tree

6 files changed

+60
-15
lines changed

6 files changed

+60
-15
lines changed

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Changelog
2+
=========
3+
4+
All notable changes to **`google-cloud-rs`** will be documented in this file.
5+
6+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7+
and this project adheres to [Semantic Versioning](https://semver.org/).
8+
9+
Unreleased
10+
----------
11+
12+
### Added
13+
14+
### Removed
15+
16+
### Fixed
17+
18+
### Changed
19+
20+
v0.2.0 - 2021-03-24
21+
-------------------
22+
23+
### Added
24+
25+
- [pubsub] Added `Subscription::receive_with_options` (#33)
26+
27+
### Removed
28+
29+
### Fixed
30+
31+
- [storage] Fixed error when bucket listing turns out to be empty (#42)
32+
- [pubsub] Changed default `max_messages` when pulling messages from `5` to `1` (#44)
33+
34+
### Changed
35+
36+
- Upgraded all dependencies (#35 and #41)
37+
38+
v0.1.0 - 2020-08-23
39+
-------------------
40+
41+
This is the initial release.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
google-cloud-rs
22
===============
33

4-
![CI](https://github.com/google-apis-rs/google-cloud-rs/workflows/CI/badge.svg)
5-
![version](https://img.shields.io/crates/v/google-cloud)
6-
![docs](https://docs.rs/google-cloud/badge.svg)
7-
![license](https://img.shields.io/crates/l/google-cloud)
4+
[![CI](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml/badge.svg)](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml)
5+
[![version](https://img.shields.io/crates/v/google-cloud)](https://crates.io/crates/google-cloud)
6+
[![docs](https://docs.rs/google-cloud/badge.svg)](https://docs.rs/google-cloud)
7+
[![license](https://img.shields.io/crates/l/google-cloud)](https://github.com/google-apis-rs/google-cloud-rs#license)
88

99
Asynchronous Rust bindings for Google Cloud Platform gRPC APIs.
1010

google-cloud-derive/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "google-cloud-derive"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Derive macros for the `google-cloud` library"
55
authors = ["Nicolas Polomack <nicolas@polomack.eu>"]
66
edition = "2018"
@@ -28,3 +28,7 @@ darling = "0.10.2"
2828
[dev-dependencies]
2929
trybuild = "1.0.25"
3030
google-cloud = { path = "../google-cloud", features = ["derive"] }
31+
32+
[package.metadata.docs.rs]
33+
all-features = true
34+
rustdoc-args = ["--cfg", "docsrs"]

google-cloud-derive/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
google-cloud-derive
22
===================
33

4-
![CI](https://github.com/google-apis-rs/google-cloud-rs/workflows/CI/badge.svg)
5-
![version](https://img.shields.io/crates/v/google-cloud-derive)
6-
![docs](https://docs.rs/google-cloud-derive/badge.svg)
7-
![license](https://img.shields.io/crates/l/google-cloud-derive)
4+
[![CI](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml/badge.svg)](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml)
5+
[![version](https://img.shields.io/crates/v/google-cloud)](https://crates.io/crates/google-cloud)
6+
[![docs](https://docs.rs/google-cloud/badge.svg)](https://docs.rs/google-cloud)
7+
[![license](https://img.shields.io/crates/l/google-cloud)](https://github.com/google-apis-rs/google-cloud-rs#license)
88

99
Derive macros for the [**`google-cloud`**](https://crates.io/crates/google-cloud) crate.
1010

google-cloud/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "google-cloud"
3+
version = "0.2.0"
34
description = "Asynchronous Rust bindings for Google Cloud Platform gRPC APIs"
4-
version = "0.1.0"
55
authors = ["Nicolas Polomack <nicolas@polomack.eu>"]
66
edition = "2018"
77
categories = ["web-programming", "network-programming", "asynchronous"]
@@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }
1515

1616
[dependencies]
1717
# Derive macros
18-
google-cloud-derive = { version = "=0.1.0", path = "../google-cloud-derive", optional = true }
18+
google-cloud-derive = { version = "0.2.0", path = "../google-cloud-derive", optional = true }
1919

2020
tonic = { version = "0.4.1", features = ["tls", "prost"] }
2121
tokio = { version = "1.4.0", features = ["macros", "fs"] }

google-cloud/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
google-cloud
22
============
33

4-
![CI](https://github.com/google-apis-rs/google-cloud-rs/workflows/CI/badge.svg)
5-
![version](https://img.shields.io/crates/v/google-cloud)
6-
![docs](https://docs.rs/google-cloud/badge.svg)
7-
![license](https://img.shields.io/crates/l/google-cloud)
4+
[![CI](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml/badge.svg)](https://github.com/google-apis-rs/google-cloud-rs/actions/workflows/ci.yaml)
5+
[![version](https://img.shields.io/crates/v/google-cloud)](https://crates.io/crates/google-cloud)
6+
[![docs](https://docs.rs/google-cloud/badge.svg)](https://docs.rs/google-cloud)
7+
[![license](https://img.shields.io/crates/l/google-cloud)](https://github.com/google-apis-rs/google-cloud-rs#license)
88

99
Asynchronous Rust bindings for Google Cloud Platform gRPC APIs.
1010

0 commit comments

Comments
 (0)