From f18128f91f3ef51af888f0f2a35db36794d09d78 Mon Sep 17 00:00:00 2001 From: Dimitris Zorbas Date: Fri, 13 Mar 2020 19:20:01 +0000 Subject: [PATCH] Release version v0.2.0 --- CHANGELOG | 9 +++++++++ lib/tefter_cli.ex | 2 +- mix.exs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6a0256a..625a17e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.2.0] - 2020-03-13 + +### Added + +* Caching to aliases so that they now work offline +* New `:go ` command which opens a browser window to the given alias +* Scrolling in the help tab +* Documentation for more shortcuts in help + ## [0.1.2] - 2020-03-12 ### Added diff --git a/lib/tefter_cli.ex b/lib/tefter_cli.ex index d558db1..fec6f80 100644 --- a/lib/tefter_cli.ex +++ b/lib/tefter_cli.ex @@ -3,7 +3,7 @@ defmodule TefterCli do Documentation for TefterCli. """ - @version "0.1.0" + @version "0.2.0" def version, do: @version end diff --git a/mix.exs b/mix.exs index 4aadf3b..64dcc28 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule TefterCli.MixProject do def project do [ app: :tefter_cli, - version: "0.1.0", + version: "0.2.0", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps()