Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update to v0.5.0 #78

Merged
merged 3 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <philipp.keller@gmail.com>"]
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