Skip to content

Commit 69171fa

Browse files
Merge #78
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]>
2 parents 4912da3 + 4fac730 commit 69171fa

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [0.5.0] 2022-10-09
7+
8+
### Changed
9+
10+
- Replace error-chain with thiserror
11+
- Make any_exp return results deterministically
12+
- Fix argument tokenization
13+
- Update to nix 0.25
14+
15+
### Fixed
16+
17+
- Fix https link to pexpect docs
18+
- Many clippy fixes
19+
- Remove unnecesary closures
20+
- Fix EOF detection on nightly
21+
- Fix examples
22+
623
## [0.4.0] 2020-05-25
724

825
### Changed

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
22
description = "Interact with unix processes/bash the same way as pexpect or Don libes expect does"
33
name = "rexpect"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = ["Philipp Keller <[email protected]>"]
6-
edition = "2018"
7-
repository = "https://github.com/philippkeller/rexpect"
8-
homepage = "https://github.com/philippkeller/rexpect"
6+
edition = "2021"
7+
repository = "https://github.com/rust-cli/rexpect"
8+
homepage = "https://github.com/rust-cli/rexpect"
99
license = "MIT"
1010
categories = ["os::unix-apis"]
1111
keywords = ["pty", "automation", "testing", "expect", "pexpect"]
1212
readme = "README.md"
13-
14-
13+
rust-version = "1.60"
1514

1615
[dependencies]
1716
comma = "1.0"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![crates.io](https://img.shields.io/crates/v/rexpect.svg)](https://crates.io/crates/rexpect)
44
[![Released API docs](https://docs.rs/rexpect/badge.svg)](https://docs.rs/rexpect)
55
[![Master API docs](https://img.shields.io/badge/docs-master-2f343b.svg)](http://philippkeller.github.io/rexpect)
6+
[![MSRV](https://img.shields.io/badge/MSRV-1.60.0-blue)]
67

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

0 commit comments

Comments
 (0)