Skip to content

Commit

Permalink
Merge #98
Browse files Browse the repository at this point in the history
98: Add changelog for 0.6.0 r=petreeftime,matthiasbeyer a=matthiasbeyer

Preparation patches for the 0.6.0 release.

Co-authored-by: Matthias Beyer <[email protected]>
  • Loading branch information
bors[bot] and matthiasbeyer committed Apr 13, 2023
2 parents 59213cd + de43124 commit 12293b6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.6.0] 2023-04-13

### Changed

- PtyProcess::get_file_handle() returns an error if dup() fails
- spawn_bash() returns error if tempfile::NamedTempFile::new() or write!() fails
- Updated "nix" requirement
- "which" functionality was added (feature gated)

### Fixed

- file descriptor leak was fixed in PtyProcess::new()
- Documentation cleanup

## [0.5.0] 2022-10-09

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
description = "Interact with unix processes/bash the same way as pexpect or Don libes expect does"
name = "rexpect"
version = "0.5.0"
version = "0.6.0"
authors = ["Philipp Keller <[email protected]>"]
edition = "2021"
repository = "https://github.com/rust-cli/rexpect"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add this to your `Cargo.toml`

```toml
[dependencies]
rexpect = "0.5"
rexpect = "0.6"
```

Simple example for interacting via ftp:
Expand Down

0 comments on commit 12293b6

Please sign in to comment.