From 6f33a481af6bce68f55b9e25d5c14c1ed46fa9d9 Mon Sep 17 00:00:00 2001 From: Vasilij Schneidermann Date: Sun, 25 Feb 2024 12:12:56 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.12=20=E2=86=92=202.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- NEWS.md | 14 ++++++++++++++ circe-pkg.el | 2 +- circe.el | 4 ++-- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 90cdbd2..ca0f975 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.12 +current_version = 2.13 parse = (?P\d+)\.(?P.*) serialize = {major}.{minor} files = circe.el circe-pkg.el diff --git a/NEWS.md b/NEWS.md index 792643b..be11679 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,17 @@ +# New in 2.13 + +- Verification with NSM now ensures that `gnutls-verify-error` is + disabled to detect expired certificates. +- The `lui-irc-colors` module now supports strikethrough/monospace + text. +- The `circe-color-nicks` module now highlights nicks in query buffers + as well. +- The minimum supported Emacs version has been bumped to 25.1. +- Emacs Lisp identifiers in Lui buttons now allow colons +- Password values in the network options are validated for the + expected type to prevent a common configuration mistake +- Several byte-compiler warnings have been fixed + # New in 2.12 - `circe-color-nicks` is now significantly faster. This is noticable diff --git a/circe-pkg.el b/circe-pkg.el index 5a45b99..7d2cca8 100644 --- a/circe-pkg.el +++ b/circe-pkg.el @@ -1,3 +1,3 @@ -(define-package "circe" "2.12" "Client for IRC in Emacs" +(define-package "circe" "2.13" "Client for IRC in Emacs" '((emacs "25.1") (cl-lib "0.5")) :url "https://github.com/emacs-circe/circe") diff --git a/circe.el b/circe.el index 805d3be..781218f 100644 --- a/circe.el +++ b/circe.el @@ -2,7 +2,7 @@ ;; Copyright (C) 2005 - 2015 Jorgen Schaefer -;; Version: 2.12 +;; Version: 2.13 ;; Keywords: IRC, chat, comm ;; Author: Jorgen Schaefer ;; URL: https://github.com/emacs-circe/circe @@ -31,7 +31,7 @@ ;;; Code: -(defvar circe-version "2.12" +(defvar circe-version "2.13" "Circe version string.") (require 'circe-compat)