Skip to content

Commit

Permalink
1.8.2
Browse files Browse the repository at this point in the history
The commit tagged as v1.8.1 was faulty (as it hadn't updated `defconst cider-version`).
  • Loading branch information
vemv committed Oct 15, 2023
1 parent d8e4291 commit 0f689fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

## master (unreleased)

## 1.8.1 (2023-10-15)
## 1.8.2 (2023-10-15)

### Changes

Expand Down
4 changes: 2 additions & 2 deletions cider.el
Expand Up @@ -11,7 +11,7 @@
;; Steve Purcell <steve@sanityinc.com>
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.dev>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 1.8.0
;; Version: 1.8.2
;; Package-Requires: ((emacs "26") (clojure-mode "5.17.1") (parseedn "1.2.0") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -93,7 +93,7 @@
(require 'sesman)
(require 'package)

(defconst cider-version "1.8.0"
(defconst cider-version "1.8.2"
"The current version of CIDER.")

(defconst cider-codename "Geneva"
Expand Down

2 comments on commit 0f689fd

@bbatsov
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would have still been better to keep the faulty commit/release around, otherwise the release numbering looks somewhat weird. Anyways, not a big deal.

@vemv
Copy link
Member Author

@vemv vemv commented on 0f689fd Oct 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 1.18.1 tag was faulty because I had forgotten to indicate that number at .el level.

I didn't go as far as removing the commit, but yeah it seemed noisy to have it in the changelog.

Please sign in to comment.