Bump to development 0.3
And link to manually maintained stable docs for now
This commit is contained in:
parent
ec04e27a89
commit
b71f7a2243
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rocket_cors"
|
name = "rocket_cors"
|
||||||
version = "0.2.2"
|
version = "0.3.0"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
||||||
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
[![Repository](https://img.shields.io/github/tag/lawliet89/rocket_cors.svg)](https://github.com/lawliet89/rocket_cors)
|
[![Repository](https://img.shields.io/github/tag/lawliet89/rocket_cors.svg)](https://github.com/lawliet89/rocket_cors)
|
||||||
[![Crates.io](https://img.shields.io/crates/v/rocket_cors.svg)](https://crates.io/crates/rocket_cors)
|
[![Crates.io](https://img.shields.io/crates/v/rocket_cors.svg)](https://crates.io/crates/rocket_cors)
|
||||||
|
|
||||||
- Documentation: [master branch](https://lawliet89.github.io/rocket_cors)
|
- Documentation: [master branch](https://lawliet89.github.io/rocket_cors) | [stable](https://lawliet89.github.io/docs/rocket_cors/0.2.2/rocket_cors)
|
||||||
|
|
||||||
Cross-origin resource sharing (CORS) for [Rocket](https://rocket.rs/) applications
|
Cross-origin resource sharing (CORS) for [Rocket](https://rocket.rs/) applications
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ work, but they are subject to the minimum that Rocket sets.
|
||||||
Add the following to Cargo.toml:
|
Add the following to Cargo.toml:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
rocket_cors = "0.2.2"
|
rocket_cors = "0.3.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
To use the latest `master` branch, for example:
|
To use the latest `master` branch, for example:
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
//! [![Repository](https://img.shields.io/github/tag/lawliet89/rocket_cors.svg)](https://github.com/lawliet89/rocket_cors)
|
//! [![Repository](https://img.shields.io/github/tag/lawliet89/rocket_cors.svg)](https://github.com/lawliet89/rocket_cors)
|
||||||
//! [![Crates.io](https://img.shields.io/crates/v/rocket_cors.svg)](https://crates.io/crates/rocket_cors)
|
//! [![Crates.io](https://img.shields.io/crates/v/rocket_cors.svg)](https://crates.io/crates/rocket_cors)
|
||||||
//!
|
//!
|
||||||
//! - Documentation: [master branch](https://lawliet89.github.io/rocket_cors)
|
//! - Documentation: [master branch](https://lawliet89.github.io/rocket_cors) | [stable](https://lawliet89.github.io/docs/rocket_cors/0.2.2/rocket_cors)
|
||||||
//!
|
//!
|
||||||
//! Cross-origin resource sharing (CORS) for [Rocket](https://rocket.rs/) applications
|
//! Cross-origin resource sharing (CORS) for [Rocket](https://rocket.rs/) applications
|
||||||
//!
|
//!
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
//! Add the following to Cargo.toml:
|
//! Add the following to Cargo.toml:
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! rocket_cors = "0.2.2"
|
//! rocket_cors = "0.3.0"
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! To use the latest `master` branch, for example:
|
//! To use the latest `master` branch, for example:
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
//! your `Cargo.toml` to:
|
//! your `Cargo.toml` to:
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! rocket_cors = { version = "0.2.2", default-features = false }
|
//! rocket_cors = { version = "0.3.0", default-features = false }
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! ## Usage
|
//! ## Usage
|
||||||
|
|
Loading…
Reference in New Issue