diff --git a/CHANGELOG.org b/CHANGELOG.org index a7898e1995a3..f135c3589c5a 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,4 +1,7 @@ * Release 0.200.x +** 0.200.9 (2017/04/06) +*** Fixes +- Fix theme loading with terminal Emacs (thanks to wang0z) ** 0.200.8 (2017/04/01) *** Convention changes - Update debug conventions diff --git a/core/core-spacemacs-buffer.el b/core/core-spacemacs-buffer.el index 0b87743bb162..ae62c19b45b1 100644 --- a/core/core-spacemacs-buffer.el +++ b/core/core-spacemacs-buffer.el @@ -13,7 +13,7 @@ ;; ;;; Code: -(defconst spacemacs-buffer-version-info "af-2.01" +(defconst spacemacs-buffer-version-info "0.200.9" "Current version used to display addition release information.") (defconst spacemacs-buffer-name "*spacemacs*" diff --git a/core/info/release-notes/0.200.9.txt b/core/info/release-notes/0.200.9.txt new file mode 100644 index 000000000000..93cb3ca30ba8 --- /dev/null +++ b/core/info/release-notes/0.200.9.txt @@ -0,0 +1,12 @@ + Spacemacs at your fingertips... in your browser! + +Thanks to the @JAremko's wonderful work, it is now possible to try out Spacemacs +in the browser. + +Try it on your phone and be amazed that even without any modifier you can still +use Emacs thanks to the 'spacebar' and 'fd' available on any touch keyboard. + +We are looking into useful applications of this feature, if you want to share some +ideas you can post on https://github.com/syl20bnr/spacemacs/issues/8634 :heart: + + Go to http://spacemacs.org to test it now! diff --git a/init.el b/init.el index 0fcd7599fa87..8fe3870d3680 100644 --- a/init.el +++ b/init.el @@ -16,7 +16,7 @@ ;; lower value in your dotfile (function `dotspacemacs/user-config') (setq gc-cons-threshold 100000000) -(defconst spacemacs-version "0.200.8" "Spacemacs version.") +(defconst spacemacs-version "0.200.9" "Spacemacs version.") (defconst spacemacs-emacs-min-version "24.4" "Minimal version of Emacs.") (if (not (version<= spacemacs-emacs-min-version emacs-version))