Skip to content

Commit

Permalink
Release adoc-mode 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Mar 9, 2023
1 parent cd2da95 commit 66b9adc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 0.7.0 (2023-03-09)

### New features

- Added `imenu` support.
Expand Down
12 changes: 5 additions & 7 deletions adoc-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; URL: https://github.com/bbatsov/adoc-mode
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.dev>
;; Created: 2009
;; Version: 0.7.0-snapshot
;; Version: 0.7.0
;; Package-Requires: ((emacs "26"))
;; Keywords: docs, wp
;;
Expand Down Expand Up @@ -42,15 +42,11 @@

;;; Code:


;;; Variables:

(require 'cl-lib)
(require 'tempo)


(defconst adoc-mode-version "0.7.0-snapshot"
"adoc mode version number.
(defconst adoc-mode-version "0.7.0"
"Adoc-mode version number.
Based upon AsciiDoc version 8.5.2. I.e. regexeps and rules are
taken from that version's asciidoc.conf / manual.")
Expand Down Expand Up @@ -2359,6 +2355,8 @@ meta characters."
(interactive)
(message "adoc-mode, version %s" adoc-mode-version))

(defalias 'adoc-mode-version #'adoc-show-version)

(defun adoc-goto-ref-label (id)
"Goto the anchor defining the id ID."
;; KLUDGE: Getting the default, i.e. trying to parse the xref 'at' point, is
Expand Down

0 comments on commit 66b9adc

Please sign in to comment.