diff --git a/CHANGELOG b/CHANGELOG index aef69e066..e5af61923 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +0.17.1 (2017-11-03) +------------------- + + * Removed bounds from example configs + * [yi-keymap-vim] Add multiline block paste + * Hopefully speed up travis CI + 0.17.0 (2017-10-09) ------------------- diff --git a/example-configs/yi-all-static/yi-all-static.cabal b/example-configs/yi-all-static/yi-all-static.cabal index 6ed63bba2..0c6820de0 100644 --- a/example-configs/yi-all-static/yi-all-static.cabal +++ b/example-configs/yi-all-static/yi-all-static.cabal @@ -1,5 +1,5 @@ name: yi-all-static -version: 0.17.0 +version: 0.17.1 category: Yi homepage: https://github.com/yi-editor/yi#readme bug-reports: https://github.com/yi-editor/yi/issues @@ -42,25 +42,25 @@ executable yi , microlens-platform , mtl , optparse-applicative >= 0.13.0.0 - , yi-core >= 0.17 - , yi-misc-modes >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-mode-javascript >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-misc-modes + , yi-mode-haskell + , yi-mode-javascript + , yi-rope if flag(vty) cpp-options: -DVTY build-depends: - yi-frontend-vty >= 0.17 + yi-frontend-vty if flag(pango) cpp-options: -DPANGO build-depends: - yi-frontend-pango >= 0.17 + yi-frontend-pango if flag(vim) cpp-options: -DVIM build-depends: - yi-keymap-vim >= 0.17 + yi-keymap-vim if flag(emacs) cpp-options: -DEMACS build-depends: - yi-keymap-emacs >= 0.17 + yi-keymap-emacs default-language: Haskell2010 diff --git a/example-configs/yi-emacs-vty-dynamic/yi-emacs-vty-dynamic.cabal b/example-configs/yi-emacs-vty-dynamic/yi-emacs-vty-dynamic.cabal index 4378e47d2..4981cde60 100644 --- a/example-configs/yi-emacs-vty-dynamic/yi-emacs-vty-dynamic.cabal +++ b/example-configs/yi-emacs-vty-dynamic/yi-emacs-vty-dynamic.cabal @@ -1,5 +1,5 @@ name: yi-emacs-vty-dynamic -version: 0.17.0 +version: 0.17.1 license: GPL-2 author: Jaro Reinders maintainer: yi-devel@googlegroups.com @@ -9,14 +9,14 @@ cabal-version: >=1.10 executable yi main-is: Main.hs build-depends: base >=4.8 && <5 - , yi-core >= 0.17 - , yi-dynamic-configuration >= 0.17 - , yi-keymap-emacs >= 0.17 - , yi-frontend-vty >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-mode-javascript >= 0.17 - , yi-misc-modes >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-dynamic-configuration + , yi-keymap-emacs + , yi-frontend-vty + , yi-mode-haskell + , yi-mode-javascript + , yi-misc-modes + , yi-rope , oo-prototypes , microlens-platform default-language: Haskell2010 diff --git a/example-configs/yi-emacs-vty-static/yi-emacs-vty-static.cabal b/example-configs/yi-emacs-vty-static/yi-emacs-vty-static.cabal index 87417bac5..fbfec902c 100644 --- a/example-configs/yi-emacs-vty-static/yi-emacs-vty-static.cabal +++ b/example-configs/yi-emacs-vty-static/yi-emacs-vty-static.cabal @@ -1,5 +1,5 @@ name: yi-emacs-vty-static -version: 0.17.0 +version: 0.17.1 category: Yi homepage: https://github.com/yi-editor/yi#readme bug-reports: https://github.com/yi-editor/yi/issues @@ -21,10 +21,10 @@ executable yi base >= 4.8 && < 5 , microlens-platform , mtl - , yi-core >= 0.17 - , yi-frontend-vty >= 0.17 - , yi-keymap-emacs >= 0.17 - , yi-misc-modes >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-frontend-vty + , yi-keymap-emacs + , yi-misc-modes + , yi-mode-haskell + , yi-rope default-language: Haskell2010 diff --git a/example-configs/yi-vim-colemak-vty-dynamic/yi-vim-colemak-vty-dynamic.cabal b/example-configs/yi-vim-colemak-vty-dynamic/yi-vim-colemak-vty-dynamic.cabal index 9e5ccbd5b..84914bee7 100644 --- a/example-configs/yi-vim-colemak-vty-dynamic/yi-vim-colemak-vty-dynamic.cabal +++ b/example-configs/yi-vim-colemak-vty-dynamic/yi-vim-colemak-vty-dynamic.cabal @@ -1,5 +1,5 @@ name: yi-vim-colemak-vty-dynamic -version: 0.17.0 +version: 0.17.1 license: GPL-2 author: Jaro Reinders maintainer: yi-devel@googlegroups.com @@ -9,14 +9,14 @@ cabal-version: >=1.10 executable yi main-is: Main.hs build-depends: base >=4.8 && <5 - , yi-core >= 0.17 - , yi-dynamic-configuration >= 0.17 - , yi-keymap-vim >= 0.17 - , yi-frontend-vty >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-mode-javascript >= 0.17 - , yi-misc-modes >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-dynamic-configuration + , yi-keymap-vim + , yi-frontend-vty + , yi-mode-haskell + , yi-mode-javascript + , yi-misc-modes + , yi-rope , oo-prototypes , microlens-platform default-language: Haskell2010 diff --git a/example-configs/yi-vim-pango-dynamic/yi-vim-pango-dynamic.cabal b/example-configs/yi-vim-pango-dynamic/yi-vim-pango-dynamic.cabal index 801fafabb..0aef17d7e 100644 --- a/example-configs/yi-vim-pango-dynamic/yi-vim-pango-dynamic.cabal +++ b/example-configs/yi-vim-pango-dynamic/yi-vim-pango-dynamic.cabal @@ -1,5 +1,5 @@ name: yi-vim-pango-dynamic -version: 0.17.0 +version: 0.17.1 license: GPL-2 author: Jaro Reinders maintainer: yi-devel@googlegroups.com @@ -9,14 +9,14 @@ cabal-version: >=1.10 executable yi main-is: Main.hs build-depends: base >=4.8 && <5 - , yi-core >= 0.17 - , yi-dynamic-configuration >= 0.17 - , yi-keymap-vim >= 0.17 - , yi-frontend-pango >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-mode-javascript >= 0.17 - , yi-misc-modes >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-dynamic-configuration + , yi-keymap-vim + , yi-frontend-pango + , yi-mode-haskell + , yi-mode-javascript + , yi-misc-modes + , yi-rope , oo-prototypes , microlens-platform default-language: Haskell2010 diff --git a/example-configs/yi-vim-pango-static/yi-vim-pango-static.cabal b/example-configs/yi-vim-pango-static/yi-vim-pango-static.cabal index bf12a8a29..6232c1a48 100644 --- a/example-configs/yi-vim-pango-static/yi-vim-pango-static.cabal +++ b/example-configs/yi-vim-pango-static/yi-vim-pango-static.cabal @@ -1,5 +1,5 @@ name: yi-vim-pango-static -version: 0.17.0 +version: 0.17.1 category: Yi homepage: https://github.com/yi-editor/yi#readme bug-reports: https://github.com/yi-editor/yi/issues @@ -21,10 +21,10 @@ executable yi base >= 4.8 && < 5 , microlens-platform , mtl - , yi-core >= 0.17 - , yi-frontend-pango >= 0.17 - , yi-keymap-vim >= 0.17 - , yi-misc-modes >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-frontend-pango + , yi-keymap-vim + , yi-misc-modes + , yi-mode-haskell + , yi-rope default-language: Haskell2010 diff --git a/example-configs/yi-vim-vty-dynamic/yi-vim-vty-dynamic.cabal b/example-configs/yi-vim-vty-dynamic/yi-vim-vty-dynamic.cabal index e64306b45..29bc67a0f 100644 --- a/example-configs/yi-vim-vty-dynamic/yi-vim-vty-dynamic.cabal +++ b/example-configs/yi-vim-vty-dynamic/yi-vim-vty-dynamic.cabal @@ -1,5 +1,5 @@ name: yi-vim-vty-dynamic -version: 0.17.0 +version: 0.17.1 license: GPL-2 author: Jaro Reinders maintainer: yi-devel@googlegroups.com @@ -9,14 +9,14 @@ cabal-version: >=1.10 executable yi main-is: yi.hs build-depends: base >=4.8 && <5 - , yi-core >= 0.17 - , yi-dynamic-configuration >= 0.17 - , yi-keymap-vim >= 0.17 - , yi-frontend-vty >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-mode-javascript >= 0.17 - , yi-misc-modes >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-dynamic-configuration + , yi-keymap-vim + , yi-frontend-vty + , yi-mode-haskell + , yi-mode-javascript + , yi-misc-modes + , yi-rope , oo-prototypes , microlens-platform default-language: Haskell2010 diff --git a/example-configs/yi-vim-vty-static/yi-vim-vty-static.cabal b/example-configs/yi-vim-vty-static/yi-vim-vty-static.cabal index 51c37cd03..a04f97398 100644 --- a/example-configs/yi-vim-vty-static/yi-vim-vty-static.cabal +++ b/example-configs/yi-vim-vty-static/yi-vim-vty-static.cabal @@ -1,5 +1,5 @@ name: yi-vim-vty-static -version: 0.17.0 +version: 0.17.1 category: Yi homepage: https://github.com/yi-editor/yi#readme bug-reports: https://github.com/yi-editor/yi/issues @@ -21,10 +21,10 @@ executable yi base >= 4.8 && < 5 , microlens-platform , mtl - , yi-core >= 0.17 - , yi-frontend-vty >= 0.17 - , yi-keymap-vim >= 0.17 - , yi-misc-modes >= 0.17 - , yi-mode-haskell >= 0.17 - , yi-rope >= 0.10 + , yi-core + , yi-frontend-vty + , yi-keymap-vim + , yi-misc-modes + , yi-mode-haskell + , yi-rope default-language: Haskell2010 diff --git a/yi-core/yi-core.cabal b/yi-core/yi-core.cabal index 132e843fa..d97776ac7 100644 --- a/yi-core/yi-core.cabal +++ b/yi-core/yi-core.cabal @@ -1,5 +1,5 @@ name: yi-core -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor core library category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -51,7 +51,7 @@ library , unix-compat >= 0.1 , unordered-containers >= 0.1.3 , xdg-basedir >= 0.2.1 - , yi-language >= 0.1.1.0 + , yi-language >= 0.17 , yi-rope >= 0.10 , exceptions if flag(hint) diff --git a/yi-dynamic-configuration/yi-dynamic-configuration.cabal b/yi-dynamic-configuration/yi-dynamic-configuration.cabal index 96980a43b..7ccb0bc89 100644 --- a/yi-dynamic-configuration/yi-dynamic-configuration.cabal +++ b/yi-dynamic-configuration/yi-dynamic-configuration.cabal @@ -1,5 +1,5 @@ name: yi-dynamic-configuration -version: 0.17.0 +version: 0.17.1 synopsis: Dynamic configuration support for Yi category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -20,12 +20,12 @@ library base >= 4.8 && < 5 , data-default , dyre >= 0.8.11 - , yi-core >= 0.17.0 + , yi-core >= 0.17 , transformers-base , mtl >= 0.1.0.1 , microlens-platform , text >= 1.0 - , yi-rope >= 0.8 + , yi-rope >= 0.10 exposed-modules: Yi.Boot Yi.Boot.Internal diff --git a/yi-frontend-pango/yi-frontend-pango.cabal b/yi-frontend-pango/yi-frontend-pango.cabal index 06264f167..586c13f9e 100644 --- a/yi-frontend-pango/yi-frontend-pango.cabal +++ b/yi-frontend-pango/yi-frontend-pango.cabal @@ -1,5 +1,5 @@ name: yi-frontend-pango -version: 0.17.0 +version: 0.17.1 synopsis: Pango frontend for Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-frontend-vty/yi-frontend-vty.cabal b/yi-frontend-vty/yi-frontend-vty.cabal index 87822a5f3..0e5a92751 100644 --- a/yi-frontend-vty/yi-frontend-vty.cabal +++ b/yi-frontend-vty/yi-frontend-vty.cabal @@ -1,5 +1,5 @@ name: yi-frontend-vty -version: 0.17.0 +version: 0.17.1 synopsis: Vty frontend for Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -27,9 +27,9 @@ library , stm >= 2.2 , text , vty >= 5.4 - , yi-core - , yi-language - , yi-rope + , yi-core >= 0.17 + , yi-language >= 0.17 + , yi-rope >= 0.10 exposed-modules: Yi.Config.Default.Vty Yi.Frontend.Vty diff --git a/yi-fuzzy-open/yi-fuzzy-open.cabal b/yi-fuzzy-open/yi-fuzzy-open.cabal index acdb72ecb..88ebf693c 100644 --- a/yi-fuzzy-open/yi-fuzzy-open.cabal +++ b/yi-fuzzy-open/yi-fuzzy-open.cabal @@ -1,5 +1,5 @@ name: yi-fuzzy-open -version: 0.17.0 +version: 0.17.1 synopsis: Fuzzy open plugin for yi description: This plugin tries to do what ctrl-p does for vim and helm does for emacs. category: Yi @@ -30,8 +30,8 @@ library , text >= 1.2 , transformers-base >= 0.4.4 , vector >= 0.11 - , yi-core >= 0.17.0 - , yi-language >= 0.16.0 + , yi-core >= 0.17 + , yi-language >= 0.17 , yi-rope >= 0.10 exposed-modules: Yi.Fuzzy diff --git a/yi-intero/yi-intero.cabal b/yi-intero/yi-intero.cabal index 44f4960f0..8fb79a39a 100644 --- a/yi-intero/yi-intero.cabal +++ b/yi-intero/yi-intero.cabal @@ -1,5 +1,5 @@ name: yi-intero -version: 0.17.0 +version: 0.17.1 synopsis: Intero support for Yi category: Yi maintainer: Yi developers diff --git a/yi-ireader/yi-ireader.cabal b/yi-ireader/yi-ireader.cabal index 193510fdf..2048536f2 100644 --- a/yi-ireader/yi-ireader.cabal +++ b/yi-ireader/yi-ireader.cabal @@ -1,5 +1,5 @@ name: yi-ireader -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor incremental reader category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-keymap-cua/yi-keymap-cua.cabal b/yi-keymap-cua/yi-keymap-cua.cabal index ccb574c92..f44521a51 100644 --- a/yi-keymap-cua/yi-keymap-cua.cabal +++ b/yi-keymap-cua/yi-keymap-cua.cabal @@ -1,5 +1,5 @@ name: yi-keymap-cua -version: 0.17.0 +version: 0.17.1 synopsis: Cua keymap for Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-keymap-emacs/yi-keymap-emacs.cabal b/yi-keymap-emacs/yi-keymap-emacs.cabal index a2b2fd379..2243cba58 100644 --- a/yi-keymap-emacs/yi-keymap-emacs.cabal +++ b/yi-keymap-emacs/yi-keymap-emacs.cabal @@ -1,5 +1,5 @@ name: yi-keymap-emacs -version: 0.17.0 +version: 0.17.1 synopsis: Emacs keymap for Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-keymap-vim/yi-keymap-vim.cabal b/yi-keymap-vim/yi-keymap-vim.cabal index df46fffe3..eac615b25 100644 --- a/yi-keymap-vim/yi-keymap-vim.cabal +++ b/yi-keymap-vim/yi-keymap-vim.cabal @@ -1,5 +1,5 @@ name: yi-keymap-vim -version: 0.17.0 +version: 0.17.1 synopsis: Vim keymap for Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -156,7 +156,7 @@ test-suite spec , tasty-hunit , QuickCheck , tasty-quickcheck - , yi-keymap-vim >= 0.17 + , yi-keymap-vim other-modules: Generic.TestPureBufferManipulations Generic.TestUtils diff --git a/yi-language/yi-language.cabal b/yi-language/yi-language.cabal index c99b9d71a..04b9b6113 100644 --- a/yi-language/yi-language.cabal +++ b/yi-language/yi-language.cabal @@ -1,5 +1,5 @@ name: yi-language -version: 0.17.0 +version: 0.17.1 synopsis: Collection of language-related Yi libraries. category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-misc-modes/yi-misc-modes.cabal b/yi-misc-modes/yi-misc-modes.cabal index 28966e371..15fac2a75 100644 --- a/yi-misc-modes/yi-misc-modes.cabal +++ b/yi-misc-modes/yi-misc-modes.cabal @@ -1,5 +1,5 @@ name: yi-misc-modes -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor miscellaneous modes category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -30,9 +30,9 @@ library , filepath , microlens-platform , text - , yi-core - , yi-language - , yi-rope + , yi-core >= 0.17 + , yi-language >= 0.17 + , yi-rope >= 0.10 build-tools: alex >= 3.0.3 && < 3.2.0 || >= 3.2.1 exposed-modules: diff --git a/yi-mode-haskell/yi-mode-haskell.cabal b/yi-mode-haskell/yi-mode-haskell.cabal index 647bfb16b..23a882d97 100644 --- a/yi-mode-haskell/yi-mode-haskell.cabal +++ b/yi-mode-haskell/yi-mode-haskell.cabal @@ -1,5 +1,5 @@ name: yi-mode-haskell -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor haskell mode category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -30,9 +30,9 @@ library , filepath , microlens-platform , text - , yi-core - , yi-language - , yi-rope + , yi-core >= 0.17 + , yi-language >= 0.17 + , yi-rope >= 0.10 build-tools: alex >= 3.0.3 && < 3.2.0 || >= 3.2.1 exposed-modules: diff --git a/yi-mode-javascript/yi-mode-javascript.cabal b/yi-mode-javascript/yi-mode-javascript.cabal index 41f92d67d..2c762d53f 100644 --- a/yi-mode-javascript/yi-mode-javascript.cabal +++ b/yi-mode-javascript/yi-mode-javascript.cabal @@ -1,5 +1,5 @@ name: yi-mode-javascript -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor javascript mode category: Yi homepage: https://github.com/yi-editor/yi#readme diff --git a/yi-snippet/yi-snippet.cabal b/yi-snippet/yi-snippet.cabal index b9d2e8e7f..2468fa782 100644 --- a/yi-snippet/yi-snippet.cabal +++ b/yi-snippet/yi-snippet.cabal @@ -1,5 +1,5 @@ name: yi-snippet -version: 0.17.0 +version: 0.17.1 synopsis: Snippet support for yi category: Yi homepage: https://github.com/yi-editor/yi#readme @@ -28,7 +28,7 @@ library , mtl >= 2.2 , text >= 1.2 , vector >= 0.11 - , yi-core >= 0.17.0 + , yi-core >= 0.17 exposed-modules: Yi.Snippet Yi.Snippet.Internal diff --git a/yi/yi.cabal b/yi/yi.cabal index 558411bdb..57320d9b0 100644 --- a/yi/yi.cabal +++ b/yi/yi.cabal @@ -1,5 +1,5 @@ name: yi -version: 0.17.0 +version: 0.17.1 synopsis: Yi editor category: Yi homepage: https://github.com/yi-editor/yi#readme