diff options
author | smihica <smihica@gmail.com> | 2014-08-11 03:21:32 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2014-08-11 03:21:32 +0900 |
commit | 4ab83795aa00b0f8ff6ad97ca0d63e91ebe09628 (patch) | |
tree | 328f36f22d1256228b40b5cd78e14ed6ff5a399a | |
parent | 4c1452f4ea7bd66ef5f3bd9e2a9dd7c0ad5a5de5 (diff) | |
download | emmet-mode-4ab83795aa00b0f8ff6ad97ca0d63e91ebe09628.tar.lz emmet-mode-4ab83795aa00b0f8ff6ad97ca0d63e91ebe09628.tar.xz emmet-mode-4ab83795aa00b0f8ff6ad97ca0d63e91ebe09628.zip |
Fixed version missmatch.
-rw-r--r-- | emmet-mode.el | 6 | ||||
-rw-r--r-- | src/comments.el | 4 | ||||
-rw-r--r-- | src/init.el | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/emmet-mode.el b/emmet-mode.el index f73079a..5ff158a 100644 --- a/emmet-mode.el +++ b/emmet-mode.el @@ -5,10 +5,10 @@ ;; Copyright (C) 2013- Shin Aoyama (@smihica https://github.com/smihica) ;; Copyright (C) 2009-2012 Chris Done -;; Version: 1.0.9 +;; Version: 1.0.10 ;; Author: Shin Aoyama <smihica@gmail.com> ;; URL: https://github.com/smihica/emmet-mode -;; Last-Updated: 2014-07-14 Mon +;; Last-Updated: 2014-08-11 Mon ;; Keywords: convenience ;; This file is free software; you can redistribute it and/or modify @@ -67,7 +67,7 @@ ;; ;;; Code: -(defconst emmet-mode:version "1.0.8") +(defconst emmet-mode:version "1.0.10") (require 'cl) diff --git a/src/comments.el b/src/comments.el index e0d2587..4724ba4 100644 --- a/src/comments.el +++ b/src/comments.el @@ -5,10 +5,10 @@ ;; Copyright (C) 2013- Shin Aoyama (@smihica https://github.com/smihica) ;; Copyright (C) 2009-2012 Chris Done -;; Version: 1.0.9 +;; Version: 1.0.10 ;; Author: Shin Aoyama <smihica@gmail.com> ;; URL: https://github.com/smihica/emmet-mode -;; Last-Updated: 2014-07-14 Mon +;; Last-Updated: 2014-08-11 Mon ;; Keywords: convenience ;; This file is free software; you can redistribute it and/or modify diff --git a/src/init.el b/src/init.el index c75a8bb..8e1d7f9 100644 --- a/src/init.el +++ b/src/init.el @@ -2,7 +2,7 @@ ;; ;;; Code: -(defconst emmet-mode:version "1.0.8") +(defconst emmet-mode:version "1.0.10") (require 'cl) |