]> code.delx.au - gnu-emacs-elpa/commitdiff
Release 0.7.2
authorDmitry Gutov <dgutov@yandex.ru>
Wed, 19 Mar 2014 03:27:33 +0000 (05:27 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Wed, 19 Mar 2014 03:28:07 +0000 (05:28 +0200)
Officially drop support for Emacs 22, it was broken in the last point release
anyway.

.travis.yml
NEWS.md
company.el

index 33c183c243bbc882e74d39da28570c33c7c05c93..cdf55d1ec01fceb8f10e3bed7c0c3cbe8bdb7a89 100644 (file)
@@ -4,31 +4,11 @@ language: emacs-lisp
 
 env:
   matrix:
-    - EMACS=emacs22
     - EMACS=emacs23
     - EMACS=emacs24
     - EMACS=emacs-snapshot
 
-matrix:
-  allow_failures:
-    - env: EMACS=emacs22
-
 install:
-  - if [ "$EMACS" = "emacs22" ]; then
-        curl -Os http://security.ubuntu.com/ubuntu/pool/universe/e/emacs22/emacs22_22.2-0ubuntu9_i386.deb &&
-        curl -Os http://security.ubuntu.com/ubuntu/pool/universe/e/emacs22/emacs22-bin-common_22.2-0ubuntu9_i386.deb &&
-        curl -Os http://security.ubuntu.com/ubuntu/pool/universe/e/emacs22/emacs22-common_22.2-0ubuntu9_all.deb &&
-        curl -Os http://security.ubuntu.com/ubuntu/pool/universe/e/emacs22/emacs22-el_22.2-0ubuntu9_all.deb &&
-        curl -Os http://security.ubuntu.com/ubuntu/pool/universe/e/emacs22/emacs22-gtk_22.2-0ubuntu9_i386.deb &&
-        sudo apt-get -qq update &&
-        sudo apt-get -qq remove emacs emacs23-bin-common emacs23-common emacs23-nox &&
-        sudo apt-get -qq --fix-missing install install-info emacsen-common libjpeg62:i386 xaw3dg:i386 liblockfile1:i386 libasound2:i386 libgif4:i386 libncurses5:i386 libpng12-0:i386 libtiff4:i386 libxpm4:i386 libxft2:i386 libglib2.0-0:i386 libgtk2.0-0:i386 &&
-        sudo apt-get -qq -f install &&
-        sudo dpkg -i emacs22-common_22.2-0ubuntu9_all.deb emacs22-el_22.2-0ubuntu9_all.deb &&
-        sudo dpkg -i --force-depends emacs22-bin-common_22.2-0ubuntu9_i386.deb &&
-        sudo dpkg -i emacs22_22.2-0ubuntu9_i386.deb emacs22-gtk_22.2-0ubuntu9_i386.deb &&
-        sudo update-alternatives --set emacs22 /usr/bin/emacs22-gtk;
-    fi
   - if [ "$EMACS" = "emacs23" ]; then
         sudo apt-get update -qq &&
         sudo apt-get install -qq emacs23-gtk emacs23-el;
diff --git a/NEWS.md b/NEWS.md
index 6b268113d3b086d3b8e40f11366214edd7870b42..682af4e37c0537a37407302a23915a678187c798 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,10 @@
 # History of user-visible changes
 
+## 2014-03-19 (0.7.2)
+
+* Support for Emacs 22 officially dropped.
+* `company-clang` supports `indent-tabs-mode` and multibyte chars before point.
+
 ## 2014-03-18 (0.7.1)
 
 * Group of back-ends can now contain keyword `:with`, which makes all back-ends
index 2a2f6171f2c3b98b3af378a73b7046549bd2d76f..b6c2b95536a6b8945bf509e4b9ca3abd9fddc3f4 100644 (file)
@@ -4,10 +4,10 @@
 
 ;; Author: Nikolaj Schumacher
 ;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
-;; Version: 0.7.1
+;; Version: 0.7.2
 ;; Keywords: abbrev, convenience, matching
 ;; URL: http://company-mode.github.io/
-;; Compatibility: GNU Emacs 22.x, GNU Emacs 23.x, GNU Emacs 24.x
+;; Compatibility: GNU Emacs 23.x, GNU Emacs 24.x
 
 ;; This file is part of GNU Emacs.