Skip to content

Commit b458d6c

Browse files
committed
Version 1.1.0
1 parent 98c69ea commit b458d6c

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

ChangeLog.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# ChangeLog
2+
## 1.1.0 (2013-10-16)
3+
- Specify line separator by "-b" option (@preygel)
4+
- This requires ghc-mod >= 2.1.2
5+
26
## 1.0.0 (2013-04-25)
37
- Refactor many autoload functions
4-
- ghcmod.vim is an interface to ghc-mod
5-
- ghcmod/command.vim contains definitions of commands
6-
- ghcmod/type.vim is an implementation of `:GhcModType`
7-
- Now `w:ghcmod_type_matchid` is not needed and deleted
8-
- ghcmod/util.vim is a collection of utilities
8+
- ghcmod.vim is an interface to ghc-mod
9+
- ghcmod/command.vim contains definitions of commands
10+
- ghcmod/type.vim is an implementation of `:GhcModType`
11+
- Now `w:ghcmod_type_matchid` is not needed and deleted
12+
- ghcmod/util.vim is a collection of utilities
913
- Add test cases
1014
- Speed up boot time by moving autoload functions used at loading ftplugins
1115
- Add commands with `!` that is executed even if the current buffer is modified
@@ -16,8 +20,8 @@
1620
## 0.4.0 (2013-03-13)
1721
- Suppress empty line when `ghcmod#type()` fails
1822
- Disable `:GhcModType` and `:GhcModTypeInsert` if the current buffer is modified
19-
- Add new variant `:GhcModType!` and `:GhcModTypeInsert!` which is executed even if the current buffer is modified.
20-
- Change `ghcmod#type()` and `ghcmod#type_insert()` to take an argument determining the behavior when the buffer is modified.
23+
- Add new variant `:GhcModType!` and `:GhcModTypeInsert!` which is executed even if the current buffer is modified.
24+
- Change `ghcmod#type()` and `ghcmod#type_insert()` to take an argument determining the behavior when the buffer is modified.
2125
- Fix `ghcmod#detect_module()` to detect the module name more correctly
2226
- Change the default directory to execute ghc-mod from (@drchaos)
2327

autoload/ghcmod.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function! s:find_basedir() "{{{
296296
endfunction "}}}
297297

298298
function! ghcmod#version() "{{{
299-
return [1, 0, 0]
299+
return [1, 1, 0]
300300
endfunction "}}}
301301

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

0 commit comments

Comments
 (0)