Bump to v1.4.0

This commit is contained in:
Taiki Endo 2022-05-01 13:57:48 +09:00
parent f8c34c49ef
commit 2e0881f64d
3 changed files with 6 additions and 10 deletions

View File

@ -5,19 +5,12 @@ on:
tags:
- v[0-9]+.*
env:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: 1
jobs:
create-release:
if: github.repository_owner == 'smol-rs'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update stable
- run: cargo package
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md

View File

@ -1,3 +1,8 @@
# Version 1.4.0
- `Command::spawn` and `Command::output` no longer unconfigure stdio streams (#20)
- Implement `From<std::process::Command>` for `Command` (#21)
# Version 1.3.0
- Improve debug implementation of `Command` (#18)

View File

@ -3,15 +3,13 @@ name = "async-process"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.3.0"
version = "1.4.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.46"
description = "Async interface for working with processes"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-process"
homepage = "https://github.com/smol-rs/async-process"
documentation = "https://docs.rs/async-process"
keywords = ["process", "spawn", "command", "subprocess", "child"]
categories = ["asynchronous", "os"]
exclude = ["/.*"]