Skip to content

Commit 3e032d5

Browse files
committedFeb 1, 2014
Version 1.2.0
1 parent f8ce48f commit 3e032d5

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed
 

‎ChangeLog.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# ChangeLog
2+
## 1.2.0 (2014-02-02)
3+
- Support Cabal sandbox (@andy-morris, #33)
4+
- Support lhaskell (@carlohamalainen, #36)
5+
- Add another way to open the quickfix (@shiena, #37)
6+
- Workaround `ghcmod#util#is_abspath()` on Windows with Vim < 7.4.001 (@Grivr, #41)
7+
28
## 1.1.0 (2013-10-16)
3-
- Specify line separator by "-b" option (@preygel)
9+
- Specify line separator by "-b" option (@preygel, #32)
410
- This requires ghc-mod >= 2.1.2
511

612
## 1.0.0 (2013-04-25)
@@ -23,19 +29,19 @@
2329
- Add new variant `:GhcModType!` and `:GhcModTypeInsert!` which is executed even if the current buffer is modified.
2430
- Change `ghcmod#type()` and `ghcmod#type_insert()` to take an argument determining the behavior when the buffer is modified.
2531
- Fix `ghcmod#detect_module()` to detect the module name more correctly
26-
- Change the default directory to execute ghc-mod from (@drchaos)
32+
- Change the default directory to execute ghc-mod from (@drchaos, #25)
2733

2834
## 0.3.0 (2013-03-06)
29-
- Add `:GhcModTypeInsert` and `ghcmod#type_insert()` that inserts a type signature under the cursor (@johntyree)
30-
- Add `:GhcModInfoPreview` that shows information in preview window (@johntyree)
31-
- Make the parsing of check command more robust (@marcmo)
35+
- Add `:GhcModTypeInsert` and `ghcmod#type_insert()` that inserts a type signature under the cursor (@johntyree, #15)
36+
- Add `:GhcModInfoPreview` that shows information in preview window (@johntyree, #15)
37+
- Make the parsing of check command more robust (@marcmo, #21)
3238
- Add buffer-local version of `g:ghcmod_ghc_options`
3339

3440
## 0.2.0 (2012-09-12)
35-
- Fix the wrong comparison of versions in `ghcmod#check_version` (@yuttie)
41+
- Fix the wrong comparison of versions in `ghcmod#check_version` (@yuttie, #11)
3642
- Fix `ghcmod#type()` on a program with compilation errors
37-
- Add `g:ghcmod_use_basedir` option (@adimit)
38-
- Add `:GhcModInfo [{identifier}]` command (@ajnsit)
43+
- Add `g:ghcmod_use_basedir` option (@adimit, #12)
44+
- Add `:GhcModInfo [{identifier}]` command (@ajnsit, #14)
3945

4046
## 0.1.2 (2012-06-04)
4147
- Move ftplugin/haskell into after/ in order to co-exist with other ftplugins

‎autoload/ghcmod.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ function! s:find_basedir() "{{{
304304
endfunction "}}}
305305

306306
function! ghcmod#version() "{{{
307-
return [1, 1, 0]
307+
return [1, 2, 0]
308308
endfunction "}}}
309309

310310
" vim: set ts=2 sw=2 et fdm=marker:

0 commit comments

Comments
 (0)