(gnus-vers): Update to 7.1.0.25.
[elisp/gnus.git-] / lisp / gnus-vers.el
1 ;;; gnus-vers.el --- Declare gnus version.
2
3 ;; Copyright (C) 2000 Free Software Foundation, Inc.
4
5 ;; Author: Keiichi Suzuki <keiichi@nanap.org>
6 ;; Keywords: news, mail, compatibility
7
8 ;; This file is part of Nana-gnus.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'product)
30 (provide 'gnus-vers)
31
32 ;; Product information of this gnus.
33 (product-provide 'gnus-vers
34     (product-define "Nana-gnus" nil '(7 1 0 25)))
35
36 (defconst gnus-product-name (product-name (product-find 'gnus-vers))
37   "Product name of this version of gnus.")
38
39 (defconst gnus-version-number (mapconcat
40                                'number-to-string
41                                (product-version (product-find 'gnus-vers))
42                                ".")
43   "Version number for this version of gnus.")
44
45 ;; gnus-vers.el ends here