Skip to content

Commit

Permalink
Merge #78
Browse files Browse the repository at this point in the history
78: Update to v0.5.0 r=petreeftime a=petreeftime

This addresses #77, but might require adjustments to fit org best practices, if any are set.

Co-authored-by: Petre Eftime <[email protected]>
  • Loading branch information
bors[bot] and petreeftime authored Oct 20, 2022
2 parents 4912da3 + 4fac730 commit 69171fa
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.5.0] 2022-10-09

### Changed

- Replace error-chain with thiserror
- Make any_exp return results deterministically
- Fix argument tokenization
- Update to nix 0.25

### Fixed

- Fix https link to pexpect docs
- Many clippy fixes
- Remove unnecesary closures
- Fix EOF detection on nightly
- Fix examples

## [0.4.0] 2020-05-25

### Changed
Expand Down
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
description = "Interact with unix processes/bash the same way as pexpect or Don libes expect does"
name = "rexpect"
version = "0.4.0"
version = "0.5.0"
authors = ["Philipp Keller <[email protected]>"]
edition = "2018"
repository = "https://github.com/philippkeller/rexpect"
homepage = "https://github.com/philippkeller/rexpect"
edition = "2021"
repository = "https://github.com/rust-cli/rexpect"
homepage = "https://github.com/rust-cli/rexpect"
license = "MIT"
categories = ["os::unix-apis"]
keywords = ["pty", "automation", "testing", "expect", "pexpect"]
readme = "README.md"


rust-version = "1.60"

[dependencies]
comma = "1.0"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/rexpect.svg)](https://crates.io/crates/rexpect)
[![Released API docs](https://docs.rs/rexpect/badge.svg)](https://docs.rs/rexpect)
[![Master API docs](https://img.shields.io/badge/docs-master-2f343b.svg)](http://philippkeller.github.io/rexpect)
[![MSRV](https://img.shields.io/badge/MSRV-1.60.0-blue)]

Spawn, control, and respond to expected patterns of child applications and
processes, enabling the automation of interactions and testing. Components
Expand Down

0 comments on commit 69171fa

Please sign in to comment.