From 7e5f6102aa709244f5d4cedec807eac4b901c4cb Mon Sep 17 00:00:00 2001 From: Kohei Suzuki Date: Tue, 17 Mar 2015 01:08:24 +0900 Subject: [PATCH] Version 1.3.0 --- ChangeLog.md | 8 +++++++- autoload/ghcmod.vim | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index eb4f502..d1c8614 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,12 @@ # ChangeLog -## x.x.x (xxxx-xx-xx) +## 1.3.0 (2015-03-17) - Add `:GhcModDiagnostics` command +- Allow whitespaces in filename (#43) +- Add newlines to ghc-mod's info command (#51, @cdepillabout) +- Fix detection of version of ghc-mod (#57, @ts468) +- Require ghc-mod >= 4.1.0 +- Fix type insertion for top level types (#70, @eddking) +- Fix `:GhcModType` and `:GhcModTypeInsert` for hard tabs (#71, @itchyny) ## 1.2.0 (2014-02-02) - Support Cabal sandbox (@andy-morris, #33) diff --git a/autoload/ghcmod.vim b/autoload/ghcmod.vim index e84a53b..045f596 100644 --- a/autoload/ghcmod.vim +++ b/autoload/ghcmod.vim @@ -307,7 +307,7 @@ function! s:find_basedir() "{{{ endfunction "}}} function! ghcmod#version() "{{{ - return [1, 2, 0] + return [1, 3, 0] endfunction "}}} " vim: set ts=2 sw=2 et fdm=marker: