Skip to content

Commit

Permalink
Merge pull request #213 from tpapp/tp/semver
Browse files Browse the repository at this point in the history
Release 1.0, clarify SemVer, add use-package example
  • Loading branch information
tpapp authored Sep 26, 2024
2 parents d360ad5 + ee086a7 commit 09897a8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ Unless you want to develop this package, it is recommended that you use it from
(require 'julia-mode)
```

Alternatively, if you are using [`use-package`](https://github.com/jwiegley/use-package), which has been [part of Emacs](https://www.gnu.org/software/emacs/manual/html_mono/use-package.html) since version 29.1, you can use

```elisp
(use-package julia-mode
:ensure t)
```

### A note on versioning

The code has been on a “rolling release” model before version 1.0: not all code changes were accompanied by a version increment. From version 1.0, we follow [semantic versioning](https://semver.org/).

### Installing from Source

To get the latest version of `julia-mode`, clone this repository and then use:
Expand Down
4 changes: 2 additions & 2 deletions julia-mode.el
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;;; julia-mode.el --- Major mode for editing Julia source code -*- lexical-binding: t -*-

;; Copyright (C) 2009-2014 Julia contributors, 2015-2020 julia-mode contributors
;; Copyright (C) 2009-2014 Julia contributors, 2015-2024 julia-mode.el contributors
;; URL: https://github.com/JuliaEditorSupport/julia-emacs
;; Version: 0.4
;; Version: 1.0.0
;; Keywords: languages
;; Package-Requires: ((emacs "26.1"))

Expand Down

0 comments on commit 09897a8

Please sign in to comment.