Skip to content

Commit

Permalink
Get ready for release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed May 28, 2019
1 parent a261c50 commit c0b563c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,5 +1,5 @@
dnl FIXME: pick up from realgud.el
AC_INIT(realgud-lldb, 1.0,)
AC_INIT(realgud-lldb, 1.0.1,)
AC_CONFIG_SRCDIR(lldb/lldb.el)
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE
Expand All @@ -10,7 +10,7 @@ AC_ARG_WITH(emacs, AC_HELP_STRING([--with-emacs],

AC_MSG_NOTICE("Checking emacs version")
$EMACS -batch -q --no-site-file -eval \
'(if (<= emacs-major-version 24)
'(if (< emacs-major-version 25)
(progn
(error "You need GNU Emacs 25 or later.")
(kill-emacs 1)
Expand Down
2 changes: 1 addition & 1 deletion lldb/lldb.el
Expand Up @@ -20,7 +20,7 @@
(require-relative-list '("core" "track-mode") "realgud--lldb-")

;; This is needed, or at least the docstring part of it is needed to
;; get the customization menu to work in Emacs 24.
;; get the customization menu to work in Emacs 25.
(defgroup realgud--lldb nil
"The realgud interface to lldb"
:group 'realgud
Expand Down
4 changes: 2 additions & 2 deletions realgud-lldb.el
@@ -1,8 +1,8 @@
;;; realgud-lldb.el --- Realgud front-end to lldb -*- lexical-binding: t -*-

;; Author: Rocky Bernstein <rocky@gnu.org>
;; Version: 1.0.0
;; Package-Requires: ((load-relative "1.2") (cl-lib "0.5") (realgud "1.4.5") (emacs "24"))
;; Version: 1.0.1
;; Package-Requires: ((load-relative "1.2") (cl-lib "0.5") (realgud "1.4.5") (emacs "25"))
;; URL: http://github.com/realgud/realgud-lldb
;; Compatibility: GNU Emacs 25.x

Expand Down

0 comments on commit c0b563c

Please sign in to comment.