Skip to content
Snippets Groups Projects
Commit 0d0c2c0f authored by Katsu Kawakami's avatar Katsu Kawakami Committed by GitHub
Browse files

Merge pull request #70 from kkawakam/release-1.0.0

Prepare for 1.0.0 release
parents e4c52d79 bb2bcc6f
No related branches found
No related tags found
No related merge requests found
language: rust
rust:
- 1.10.0
- 1.11.0
- beta
- nightly
script:
......
[package]
name = "rustyline"
version = "0.2.3"
version = "1.0.0"
authors = ["Katsu Kawakami <kkawa1570@gmail.com>"]
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
documentation = "http://kkawakam.github.io/rustyline/rustyline"
......
# RustyLine
[![Build Status](https://travis-ci.org/kkawakam/rustyline.svg?branch=master)](https://travis-ci.org/kkawakam/rustyline)
[![Build status](https://ci.appveyor.com/api/projects/status/ls7sty8nt25rdfkq/branch/master?svg=true)](https://ci.appveyor.com/project/kkawakam/rustyline/branch/master)
[![Clippy Linting Result](https://clippy.bashy.io/github/kkawakam/rustyline/master/badge.svg)](https://clippy.bashy.io/github/kkawakam/rustyline/master/log)
[![](http://meritbadge.herokuapp.com/rustyline)](https://crates.io/crates/rustyline)
[![Build status](https://ci.appveyor.com/api/projects/status/ls7sty8nt25rdfkq/branch/master?svg=true)](https://ci.appveyor.com/project/kkawakam/rustyline/branch/master)
Readline implementation in Rust that is based on [Antirez' Linenoise](https://github.com/antirez/linenoise)
[Documentation](https://kkawakam.github.io/rustyline)
**Supported Platforms**
* Linux
* Windows - Work in Progress (Issue #37), modifier keys do not work
* Windows
* cmd.exe
* Powershell
**Note**: Powershell ISE is not supported, check [issue #56](https://github.com/kkawakam/rustyline/issues/56)
## Build
This project uses Cargo and Rust Nightly
This project uses Cargo and Rust stable
```bash
cargo build --release
```
......@@ -63,7 +66,7 @@ to your `Cargo.toml`:
```toml
[dependencies]
rustyline = "0.2.3"
rustyline = "1.0.0"
```
## Features
......
environment:
matrix:
- TARGET: 1.10.0-x86_64-pc-windows-msvc
- TARGET: 1.10.0-x86_64-pc-windows-gnu
- TARGET: 1.11.0-x86_64-pc-windows-msvc
- TARGET: 1.11.0-x86_64-pc-windows-gnu
- TARGET: beta-x86_64-pc-windows-msvc
- TARGET: beta-x86_64-pc-windows-gnu
install:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment