diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 20:20:39 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 20:20:39 -0800 | 
| commit | c3f90b450ee4449d6b6f44bc690e0cdbca3ba428 (patch) | |
| tree | 08bf55ca3ecd1f654476873a7b915d33ddfa7c97 /rust | |
| parent | bd613a2d432fe487ed91f490e8058732749b5a8e (diff) | |
| download | fatcat-c3f90b450ee4449d6b6f44bc690e0cdbca3ba428.tar.gz fatcat-c3f90b450ee4449d6b6f44bc690e0cdbca3ba428.zip | |
bump versions (0.1.0 to 0.2.0)
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/Cargo.toml | 4 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/Cargo.toml | 2 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/README.md | 6 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/api.yaml | 2 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/api/swagger.yaml | 2 | 
5 files changed, 8 insertions, 8 deletions
| diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 406f8258..9a3b0534 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,9 +1,9 @@  [package]  name = "fatcat" -version = "0.1.0" +version = "0.2.0"  edition = "2018"  authors = ["Bryan Newbold <bnewbold@archive.org>"] -description = "A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata" +description = "A scalable, versioned, API-oriented catalog for bibliographic entities and file metadata"  license = "AGPL 3.0"  [workspace] diff --git a/rust/fatcat-api-spec/Cargo.toml b/rust/fatcat-api-spec/Cargo.toml index 4e70af06..a0388d95 100644 --- a/rust/fatcat-api-spec/Cargo.toml +++ b/rust/fatcat-api-spec/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "fatcat-api-spec" -version = "0.1.0" +version = "0.2.0"  authors = ["Bryan Newbold <bnewbold@archive.org>"]  description = "HTTP API models, endpoints, and other auto-generated types"  license = "CC-0" diff --git a/rust/fatcat-api-spec/README.md b/rust/fatcat-api-spec/README.md index 9d06dd4a..b9f07e75 100644 --- a/rust/fatcat-api-spec/README.md +++ b/rust/fatcat-api-spec/README.md @@ -12,8 +12,8 @@ To see how to make this your own, look here:  [README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md) -- API version: 0.1.0 -- Build date: 2019-01-24T21:18:57.859Z +- API version: 0.2.0 +- Build date: 2019-01-29T04:18:53.539Z  This autogenerated project defines an API crate `fatcat` which contains:  * An `Api` trait defining the API in Rust. @@ -169,7 +169,7 @@ The server example is designed to form the basis for implementing your own serve  * Set up a new Rust project, e.g., with `cargo init --bin`.  * Insert `fatcat` into the `members` array under [workspace] in the root `Cargo.toml`, e.g., `members = [ "fatcat" ]`. -* Add `fatcat = {version = "0.1.0", path = "fatcat"}` under `[dependencies]` in the root `Cargo.toml`. +* Add `fatcat = {version = "0.2.0", path = "fatcat"}` under `[dependencies]` in the root `Cargo.toml`.  * Copy the `[dependencies]` and `[dev-dependencies]` from `fatcat/Cargo.toml` into the root `Cargo.toml`'s `[dependencies]` section.    * Copy all of the `[dev-dependencies]`, but only the `[dependencies]` that are required by the example server. These should be clearly indicated by comments.    * Remove `"optional = true"` from each of these lines if present. diff --git a/rust/fatcat-api-spec/api.yaml b/rust/fatcat-api-spec/api.yaml index e359de36..76f51e63 100644 --- a/rust/fatcat-api-spec/api.yaml +++ b/rust/fatcat-api-spec/api.yaml @@ -4,7 +4,7 @@ info:    title: fatcat    description: A scalable, versioned, API-oriented catalog of bibliographic entities      and file metadata -  version: 0.1.0 +  version: 0.2.0  schemes: [https]  basePath: /v0  host: api.fatcat.wiki diff --git a/rust/fatcat-api-spec/api/swagger.yaml b/rust/fatcat-api-spec/api/swagger.yaml index b671f676..e8b8650d 100644 --- a/rust/fatcat-api-spec/api/swagger.yaml +++ b/rust/fatcat-api-spec/api/swagger.yaml @@ -3,7 +3,7 @@ swagger: "2.0"  info:    description: "A scalable, versioned, API-oriented catalog of bibliographic entities\      \ and file metadata" -  version: "0.1.0" +  version: "0.2.0"    title: "fatcat"  host: "api.fatcat.wiki"  basePath: "/v0" | 
