Skip to content

Commit f4e1dc6

Browse files
committed
Change test matrix to match ElixirLS and recent Emacs versions
1 parent 9578c0f commit f4e1dc6

File tree

5 files changed

+18
-15
lines changed

5 files changed

+18
-15
lines changed

.travis.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1+
dist: xenial
12
language: elixir
23
cache: apt
34
env:
4-
- EVM_EMACS=24.3
5-
- EVM_EMACS=24.4
6-
- EVM_EMACS=24.5
7-
- EVM_EMACS=25.1
8-
- EVM_EMACS=25.2
9-
matrix:
10-
include:
11-
- elixir: 1.0.5
12-
otp_release: 17.4
13-
- elixir: 1.4.3
14-
otp_release: 19.0
15-
- elixir: 1.6.0
16-
otp_release: 20.1
5+
- EVM_EMACS=git-snapshot
6+
- EVM_EMACS=26.3
7+
elixir:
8+
- 1.7.4
9+
- 1.9.4
10+
- 1.10.4
11+
otp_release:
12+
- 20.3
13+
- 22.3
1714
before_install:
1815
- curl -fsSkL https://gist.githubusercontent.com/Trevoke/90409590f43abfd0d7fe3b02b5249849/raw > travis.sh && source ./travis.sh
19-
- evm install emacs-$EVM_EMACS-travis --use --skip
16+
- evm install emacs-$EVM_EMACS-travis-linux-xenial --use --skip
2017
- cask
2118
install:
2219
- cask install

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.4.0 - Unreleased
2+
* [#459](https://github.com/elixir-editors/emacs-elixir/pull/459) - Customizable font-face for numbers
3+
14
## v2.3.1 - 2016/04/19
25
* [#337](https://github.com/elixir-editors/emacs-elixir/pull/337) - Fix indentation issue after COMMA token
36
* [#333](https://github.com/elixir-editors/emacs-elixir/pull/333) - Fix indentation of second element inside list of tuples

Cask

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
(files "*.el")
77

88
(development
9+
(depends-on "pkg-info")
910
(depends-on "ert-runner"))

elixir-format.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@
2828
(defcustom elixir-format-arguments nil
2929
"Additional arguments to 'mix format'"
3030
:type '(repeat string)
31+
:group 'elixir
3132
:group 'elixir-format)
3233

3334
(defcustom elixir-format-hook nil
3435
"Hook called by `elixir-format'."
3536
:type 'hook
37+
:group 'elixir
3638
:group 'elixir-format)
3739

3840

elixir-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;; Created: Mon Nov 7 2011
1212
;; Keywords: languages elixir
1313
;; Version: 2.4.0
14-
;; Package-Requires: ((emacs "24") (pkg-info "0.4"))
14+
;; Package-Requires: ((emacs "26.3"))
1515

1616
;; This file is not a part of GNU Emacs.
1717

0 commit comments

Comments
 (0)