Skip to content

Commit eecf2f2

Browse files
committed
Update for releasing 2.5
1 parent e591c16 commit eecf2f2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGES.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Markdown Mode 2.5
22

3-
*Under development*
4-
53
* **Breaking changes:**
64
- `markdown-do` supports following link [GH-666][]
75
This changes behavior of `markdown-do` at table

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
[leanpub-badge]: https://img.shields.io/badge/leanpub-guide-orange.svg
1414

1515
markdown-mode is a major mode for editing [Markdown][]-formatted
16-
text. The latest stable version is markdown-mode 2.4, released on
17-
May 30, 2020. See the [release notes][] for details.
16+
text. The latest stable version is markdown-mode 2.5, released on
17+
Feb 12, 2022. See the [release notes][] for details.
1818
markdown-mode is free software, licensed under the GNU GPL,
1919
version 3 or later.
2020

2121
![Markdown Mode Screenshot](https://jblevins.org/projects/markdown-mode/screenshots/20170818-001.png)
2222

2323
[Markdown]: http://daringfireball.net/projects/markdown/
24-
[release notes]: https://github.com/jrblevin/markdown-mode/releases/tag/v2.4
24+
[release notes]: https://github.com/jrblevin/markdown-mode/releases/tag/v2.5
2525

2626
## Documentation
2727

@@ -108,7 +108,7 @@ to load automatically by adding the following to your init file:
108108
(add-to-list 'auto-mode-alist '("README\\.md\\'" . gfm-mode))
109109
```
110110

111-
[markdown-mode.el]: https://raw.githubusercontent.com/jrblevin/markdown-mode/v2.4/markdown-mode.el
111+
[markdown-mode.el]: https://raw.githubusercontent.com/jrblevin/markdown-mode/v2.5/markdown-mode.el
112112

113113
**Development Version**
114114

@@ -1092,6 +1092,7 @@ first version was released on May 24, 2007.
10921092
* 2017-05-26: [Version 2.2][]
10931093
* 2017-08-31: [Version 2.3][]
10941094
* 2020-05-30: [Version 2.4][]
1095+
* 2022-02-12: [Version 2.5][]
10951096
10961097
[Version 1.1]: https://jblevins.org/projects/markdown-mode/rev-1-1
10971098
[Version 1.2]: https://jblevins.org/projects/markdown-mode/rev-1-2
@@ -1108,3 +1109,4 @@ first version was released on May 24, 2007.
11081109
[Version 2.2]: https://jblevins.org/projects/markdown-mode/rev-2-2
11091110
[Version 2.3]: https://jblevins.org/projects/markdown-mode/rev-2-3
11101111
[Version 2.4]: https://github.com/jrblevin/markdown-mode/releases/tag/v2.4
1112+
[Version 2.5]: https://github.com/jrblevin/markdown-mode/releases/tag/v2.5

markdown-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Author: Jason R. Blevins <[email protected]>
77
;; Maintainer: Jason R. Blevins <[email protected]>
88
;; Created: May 24, 2007
9-
;; Version: 2.5-dev
9+
;; Version: 2.5
1010
;; Package-Requires: ((emacs "25.1"))
1111
;; Keywords: Markdown, GitHub Flavored Markdown, itex
1212
;; URL: https://jblevins.org/projects/markdown-mode/
@@ -55,7 +55,7 @@
5555

5656
;;; Constants =================================================================
5757

58-
(defconst markdown-mode-version "2.5-dev"
58+
(defconst markdown-mode-version "2.5"
5959
"Markdown mode version number.")
6060

6161
(defconst markdown-output-buffer-name "*markdown-output*"

0 commit comments

Comments
 (0)