From: Dmitry Gutov Date: Wed, 19 Mar 2014 03:27:33 +0000 (+0200) Subject: Release 0.7.2 X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/fec7c0b4a8651160c5d759cc6703b2c45852d5bb Release 0.7.2 Officially drop support for Emacs 22, it was broken in the last point release anyway. --- diff --git a/.travis.yml b/.travis.yml index 33c183c24..cdf55d1ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 6b268113d..682af4e37 100644 --- 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 diff --git a/company.el b/company.el index 2a2f6171f..b6c2b9553 100644 --- a/company.el +++ b/company.el @@ -4,10 +4,10 @@ ;; Author: Nikolaj Schumacher ;; Maintainer: Dmitry Gutov -;; 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.