Skip to content

Commit 4ad2199

Browse files
authored
Merge pull request #82 from spaceapi-community/prepare-0.7-release
Prepare 0.7 release
2 parents 657adc9 + 1a80ba8 commit 4ad2199

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Possible log types:
1313

1414
### Unreleased
1515

16+
### v0.7.0 (2019-08-22)
17+
1618
- [changed] Require Rust 1.31+ (Rust 2018 edition) (#76)
1719
- [changed] Use [serde flatten](https://serde.rs/attr-flatten.html) to
1820
implement extensions. This changes the in memory representation of the

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
[package]
22
name = "spaceapi"
3-
version = "0.6.0"
4-
documentation = "https://docs.rs/spaceapi/0.6.0/"
3+
version = "0.7.0"
54
repository = "https://github.com/spaceapi-community/spaceapi-rs/"
65
license = "MIT OR Apache-2.0"
76
authors = [
87
"Raphael Nestler <raphael.nestler@gmail.com>",
98
"Danilo Bargen <mail@dbrgn.ch>",
109
"Stefan Schindler <stefan@estada.ch>",
1110
]
12-
description = "Space API types and serialization/deserialization."
11+
description = "SpaceAPI types and serialization/deserialization."
1312
readme = "README.md"
1413
keywords = ["spaceapi", "hackerspaces", "status", "api"]
1514
categories = ["api-bindings"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Rust Space API Implementation
1+
# Rust SpaceAPI Implementation
22

33
[![CircleCI](https://circleci.com/gh/spaceapi-community/spaceapi-server-rs/tree/master.svg?style=shield)](https://circleci.com/gh/spaceapi-community/spaceapi-server-rs/tree/master)
44
[![Crates.io Version](https://img.shields.io/crates/v/spaceapi.svg)](https://crates.io/crates/spaceapi)
55
[![Crates.io Downloads](https://img.shields.io/crates/d/spaceapi.svg)](https://crates.io/crates/spaceapi)
66

7-
This is an implementation of the [SpaceAPI](https://spacedirectory.org/) v0.13
7+
This is an implementation of the [SpaceAPI](https://spaceapi.io/) v0.13
88
in Rust. It contains both the type definitions as well as tools for
99
serialization and deserialization to/from JSON using Serde.
1010

1111
- Crate Documentation: https://docs.rs/spaceapi/
12-
- Space API Documentation: https://spaceapi.io/pages/docs.html
12+
- SpaceAPI Documentation: https://spaceapi.io/pages/docs.html
1313

1414
This library requires Rust 1.31.0 or newer.
1515

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
//! Space API definitions and serialization.
1+
//! SpaceAPI definitions and serialization.
22
//!
33
//! This crate contains all data-related definitions that are present in the
4-
//! [Space API](https://spacedirectory.org/). It also handles serializing and
4+
//! [SpaceAPI](https://spaceapi.io/). It also handles serializing and
55
//! deserializing of that data from/to JSON by implementing the Serde
66
//! [`Serialize`](https://docs.serde.rs/serde/ser/trait.Serialize.html) and
77
//! [`Deserialize`](https://docs.serde.rs/serde/de/trait.Deserialize.html)
88
//! traits for all structs.
99
//!
10-
//! The currently supported Space API version is 0.13. It is not yet fully
10+
//! The currently supported SpaceAPI version is 0.13. It is not yet fully
1111
//! implemented.
1212
//!
13-
//! If you want to implement a Space API server on top of these types, you
13+
//! If you want to implement a SpaceAPI server on top of these types, you
1414
//! might want to take a look at the [`spaceapi_server`
1515
//! crate](https://github.com/spaceapi-community/spaceapi-server-rs).
1616
//!
@@ -56,7 +56,7 @@
5656
//!
5757
//! ## Deserializing
5858
//!
59-
//! You can deserialize any struct of the Space API through Serde:
59+
//! You can deserialize any struct of the SpaceAPI through Serde:
6060
//!
6161
//! use serde_json;
6262
//! use spaceapi::Location;

src/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pub struct Stream {
157157
pub ustream: Option<String>,
158158
}
159159

160-
/// The main Space API status object.
160+
/// The main SpaceAPI status object.
161161
#[derive(Serialize, Deserialize, Default, Debug, Clone, PartialEq)]
162162
pub struct Status {
163163
// Hackerspace properties

0 commit comments

Comments
 (0)