Bump version to 0.105.9 and update change log
This commit is contained in:
parent
fb6d812c9e
commit
898f38f89b
2 changed files with 26 additions and 1 deletions
|
@ -1,4 +1,29 @@
|
||||||
* Release 0.105.x
|
* Release 0.105.x
|
||||||
|
** 0.105.9 (2016/01/17)
|
||||||
|
*** Improvements
|
||||||
|
- Fix error on Microsoft Windows 10 OS regarding missing =printf= command
|
||||||
|
(don't call =exec-path-from-shell= function on Microsoft Windows)
|
||||||
|
(thanks to syohex)
|
||||||
|
- New key bindings ~C-e~ and ~C-y~ in evilified buffers to scroll lines
|
||||||
|
(thanks to CestDiego)
|
||||||
|
- Remove key binding hack for =evil-jumper= since the issue has been fixed
|
||||||
|
upstream (thanks to justbur)
|
||||||
|
- Remove unused =init-dired+= function (thanks to AlejandroCatalina)
|
||||||
|
- Various documentation improvements (thanks to balajisivaraman, jcppython,
|
||||||
|
jmiven, jorisE)
|
||||||
|
*** New conventions
|
||||||
|
- =use-package= code guidelines
|
||||||
|
- Key bindings documentation only need to mention ~SPC~ prefix
|
||||||
|
*** Layer changes
|
||||||
|
**** Markdown
|
||||||
|
- Add syntax highlighting for =R= code blocks (thanks to rustyplanet)
|
||||||
|
**** Org
|
||||||
|
- Fix early creation of empty =org= directory (thanks to tboby)
|
||||||
|
- Add default key binding ~C-c c~ for =org-capture=
|
||||||
|
(thanks to AlejandroCatalina)
|
||||||
|
**** Spacemacs
|
||||||
|
- Add =bracketed-paste= package to improve pasted text in terminals
|
||||||
|
(thanks to AlejandroCatalina)
|
||||||
** 0.105.8 (2016/01/12)
|
** 0.105.8 (2016/01/12)
|
||||||
*** Fixes
|
*** Fixes
|
||||||
- Fix the red mode-line when error occurs during loading
|
- Fix the red mode-line when error occurs during loading
|
||||||
|
|
2
init.el
2
init.el
|
@ -13,7 +13,7 @@
|
||||||
;; (package-initialize)
|
;; (package-initialize)
|
||||||
|
|
||||||
(setq gc-cons-threshold 100000000)
|
(setq gc-cons-threshold 100000000)
|
||||||
(defconst spacemacs-version "0.105.8" "Spacemacs version.")
|
(defconst spacemacs-version "0.105.9" "Spacemacs version.")
|
||||||
(defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.")
|
(defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.")
|
||||||
|
|
||||||
(if (not (version<= spacemacs-emacs-min-version emacs-version))
|
(if (not (version<= spacemacs-emacs-min-version emacs-version))
|
||||||
|
|
Reference in a new issue