From c0f6eb57a0f0bb711ab2b42db7a08d196bb077d2 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Sun, 8 Mar 2015 18:00:05 +0100 Subject: [PATCH] Release 1.0.0.rc2 --- CHANGELOG.md | 10 ++++++++++ README.md | 4 ++-- main.go | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b77ea3..935478a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # asciinema cli changelog +## 1.0.0.rc2 (2015-03-08) + +* All dependencies are vendored now in Godeps dir +* Help message includes all commands with their possible options +* `-y` and `-t` options have longer alternatives: `--yes`, `--title` +* `--max-wait` option has shorter alternative: `-w` +* Import paths changed to `github.com/asciinema/asciinema` due to repository + renaming +* `-y` also suppresess "please resize terminal" prompt + ## 1.0.0.rc1 (2015-03-02) * New [asciicast file format](doc/asciicast-v1.md) diff --git a/README.md b/README.md index bf367e1..03ce0a3 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Terminal session recorder and the best companion of [asciinema.org](https://asciinema.org). -**This is README for 1.0.0.rc1 which can be downloaded -[here](https://github.com/asciinema/asciinema/releases/tag/v1.0.0.rc1).** +**This is README for 1.0.0.rc2 which can be downloaded +[here](https://github.com/asciinema/asciinema/releases/tag/v1.0.0.rc2).** ## Installation diff --git a/main.go b/main.go index 3e753b4..887d4c2 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ import ( "github.com/asciinema/asciinema/util" ) -const Version = "1.0.0.rc1" +const Version = "1.0.0.rc2" var GitCommit string // populated during build