branch: elpa/zenburn-theme
commit 8697934a57151de119744ea79fde83120e05b88d
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Release 2.10.0
---
 CHANGELOG.md     |  2 ++
 zenburn-theme.el | 14 +++++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1208fdb2f8..adaffd2112 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## master (unreleased)
 
+## 2.10.0 (2026-06-01)
+
 ### New features
 
 * Introduce a semantic color palette layered on top of the positional palette. 
Faces now reference meaning-based names like `zenburn-comment`, 
`zenburn-string`, `zenburn-keyword`, `zenburn-error`, and 
`zenburn-diff-added-bg` instead of `zenburn-green`, `zenburn-red`, etc. Users 
can remap meanings without touching the base palette via the new 
`zenburn-override-semantic-colors-alist` customization. Migrated so far: 
`font-lock`, basic `success`/`warning`, and the `diff` section (which also  
[...]
diff --git a/zenburn-theme.el b/zenburn-theme.el
index 20285bfa20..1e50f2ebd8 100644
--- a/zenburn-theme.el
+++ b/zenburn-theme.el
@@ -4,7 +4,7 @@
 
 ;; Author: Bozhidar Batsov <[email protected]>
 ;; URL: https://github.com/bbatsov/zenburn-emacs
-;; Version: 2.9.0
+;; Version: 2.10.0
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -64,25 +64,29 @@ for the list of semantic names that ship with the theme."
   :type '(alist
           :key-type (string :tag "Name")
           :value-type (choice (string :tag "Hex")
-                              (symbol :tag "Palette name"))))
+                              (symbol :tag "Palette name")))
+  :package-version '(zenburn . "2.10.0"))
 
 (defcustom zenburn-use-variable-pitch nil
   "When non-nil, use variable pitch face for some headings and titles."
   :type 'boolean
   :safe #'booleanp
-  :group 'zenburn-theme)
+  :group 'zenburn-theme
+  :package-version '(zenburn . "2.10.0"))
 
 (defcustom zenburn-scale-org-headlines nil
   "Whether `org-mode' headlines should be scaled."
   :type 'boolean
   :safe #'booleanp
-  :group 'zenburn-theme)
+  :group 'zenburn-theme
+  :package-version '(zenburn . "2.10.0"))
 
 (defcustom zenburn-scale-outline-headlines nil
   "Whether `outline-mode' headlines should be scaled."
   :type 'boolean
   :safe #'booleanp
-  :group 'zenburn-theme)
+  :group 'zenburn-theme
+  :package-version '(zenburn . "2.10.0"))
 
 (defcustom zenburn-height-plus-1 1.1
   "Font size +1."

Reply via email to