Skip to content

Commit

Permalink
Merge pull request #27 from leshow/inc_version
Browse files Browse the repository at this point in the history
Inc version
  • Loading branch information
leshow authored Jan 11, 2021
2 parents 70e3496 + 80cb5ea commit 4036f4f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## tokio-i3ipc

**Now with tokio 1.0 support!** Use version 0.12.0 and up for tokio 1.0

[![Build Status](https://github.com/leshow/tokio-i3ipc/workflows/Actions/badge.svg)](https://github.com/leshow/tokio-i3ipc/actions)
[![Crate](https://img.shields.io/crates/v/tokio-i3ipc.svg)](https://crates.io/crates/tokio-i3ipc)
[![API](https://docs.rs/tokio-i3ipc/badge.svg)](https://docs.rs/tokio-i3ipc)
Expand Down
2 changes: 1 addition & 1 deletion async-i3ipc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-i3ipc"
version = "0.2.0"
version = "0.3.0"
authors = ["Evan Cameron <[email protected]>"]
edition = "2018"
description = """
Expand Down
2 changes: 1 addition & 1 deletion async-i3ipc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/async-i3ipc/0.2.0")]
#![doc(html_root_url = "https://docs.rs/async-i3ipc/0.3.0")]
//! # async-i3ipc
//!
//! This crate provides types and functions for working with i3's IPC protocol
Expand Down
2 changes: 1 addition & 1 deletion tokio-i3ipc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-i3ipc"
version = "0.11.0"
version = "0.12.0"
authors = ["Evan Cameron <[email protected]>"]
edition = "2018"
description = """
Expand Down
2 changes: 2 additions & 0 deletions tokio-i3ipc/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# tokio-i3ipc

**Now with tokio 1.0 support!** Use version 0.12.0 and up for tokio 1.0

![Build Status](https://github.com/leshow/tokio-i3ipc/workflows/.github/workflows/actions.yml/badge.svg)
[![Crate](https://img.shields.io/crates/v/tokio-i3ipc.svg)](https://crates.io/crates/tokio-i3ipc)
[![API](https://docs.rs/tokio-i3ipc/badge.svg)](https://docs.rs/tokio-i3ipc)
Expand Down
8 changes: 4 additions & 4 deletions tokio-i3ipc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tokio-i3ipc/0.11.0")]
#![doc(html_root_url = "https://docs.rs/tokio-i3ipc/0.12.0")]
//! # tokio-i3ipc
//!
//! This crate provides types and functions for working with i3's IPC protocol
Expand All @@ -17,7 +17,7 @@
//! # use std::io;
//! use tokio_i3ipc::{event::{Event,Subscribe}, I3};
//!
//! #[tokio::main]
//! #[tokio::main(flavor = "current_thread")]
//! async fn main() -> io::Result<()> {
//! let mut i3 = I3::connect().await?;
//! i3.subscribe([Subscribe::Window]).await?;
Expand Down Expand Up @@ -49,7 +49,7 @@
//!
//! use tokio_i3ipc::{reply, I3};
//!
//! #[tokio::main]
//! #[tokio::main(flavor = "current_thread")]
//! async fn main() -> io::Result<()> {
//! let mut i3 = I3::connect().await?;
//! // this type can be inferred, here is written explicitly:
Expand All @@ -66,7 +66,7 @@
//! # use std::io;
//! use tokio_i3ipc::{msg, reply, MsgResponse, I3};
//!
//! #[tokio::main]
//! #[tokio::main(flavor = "current_thread")]
//! # async fn main() -> io::Result<()> {
//! let mut i3 = I3::connect().await?;
//! // send msg RunCommand with a payload
Expand Down

0 comments on commit 4036f4f

Please sign in to comment.