diff --git a/Cargo.toml b/Cargo.toml index ab464e1..fd29a75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "activitystreams" description = "Activity Streams in Rust" -version = "0.5.0-alpha.1" +version = "0.5.0-alpha.2" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/activitystreams" @@ -17,7 +17,7 @@ primitives = ["chrono", "mime", "serde", "thiserror", "url"] types = ["derive", "kinds", "primitives", "serde", "serde_json"] [dependencies] -activitystreams-derive = { version = "0.5.0-alpha.0", path = "activitystreams-derive", optional = true} +activitystreams-derive = { version = "0.5.0-alpha.1", path = "activitystreams-derive", optional = true} chrono = { version = "0.4", optional = true } mime = { version = "0.3", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/README.md b/README.md index ec43444..5c14e8a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ __A set of Traits and Types that make up the ActivityStreams and ActivityPub spe First, add ActivityStreams to your dependencies ```toml -activitystreams = "0.5.0-alpha.1" +activitystreams = "0.5.0-alpha.2" ``` ### Types diff --git a/activitystreams-derive/Cargo.toml b/activitystreams-derive/Cargo.toml index 8522955..b725052 100644 --- a/activitystreams-derive/Cargo.toml +++ b/activitystreams-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "activitystreams-derive" description = "Derive macros for activitystreams" -version = "0.5.0-alpha.0" +version = "0.5.0-alpha.1" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/activitystreams" diff --git a/activitystreams-derive/README.md b/activitystreams-derive/README.md index 1b922c0..b17fb73 100644 --- a/activitystreams-derive/README.md +++ b/activitystreams-derive/README.md @@ -10,7 +10,7 @@ Add the required crates to your `Cargo.toml` ```toml # Cargo.toml -activitystreams = "0.5.0-alpha.0" +activitystreams = "0.5.0-alpha.2" serde = { version = "1.0", features = ["derive"] } ``` diff --git a/src/lib.rs b/src/lib.rs index 8a3c88f..de9e2cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! //! First, add ActivityStreams to your dependencies //! ```toml -//! activitystreams = "0.5.0-alpha.1" +//! activitystreams = "0.5.0-alpha.2" //! ``` //! //! ### Types