• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#  Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
2#  dedicated to making software imaging solutions freely available.
3#
4#  You may not use this file except in compliance with the License.  You may
5#  obtain a copy of the License at
6#
7#    https://imagemagick.org/script/license.php
8#
9#  Unless required by applicable law or agreed to in writing, software
10#  distributed under the License is distributed on an "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12#  See the License for the specific language governing permissions and
13#  limitations under the License.
14#
15#  Given a version number MAJOR.MINOR.MICRO-PATCH, increment the:
16#
17#  1. MAJOR version for incompatible API changes,
18#  2. MINOR version when MICRO version exceeds 15 e.g. 0x70F becomes 0x710
19#  3. MICRO version for added functionality in backwards compatible
20#     manner, and
21#  4. PATCH version when you make backwards compatible bug fixes.
22#
23#  Additional labels for pre-release and build metadata are available as
24#  extensions to the MAJOR.MINOR.MICRO-PATCH format.
25#
26m4_define([magick_name], [ImageMagick])
27m4_define([magick_major_version], [7])
28m4_define([magick_minor_version], [0])
29m4_define([magick_micro_version], [11])
30m4_define([magick_patchlevel_version], [8])
31m4_define([magick_bugreport],
32          [https://github.com/ImageMagick/ImageMagick/issues])
33m4_define([magick_url], [https://imagemagick.org])
34m4_define([magick_lib_version], [0x70B])
35m4_define([magick_tarname],[ImageMagick])
36
37#
38# If the library source code has changed at all since the last update,
39# increment revision (‘c:r:a’ becomes ‘c:r+1:a’).  If any interfaces have been
40# added, removed, or changed since the last update, increment current, and set
41# revision to 0.  If any interfaces have been added since the last public
42# release, then increment age.  If any interfaces have been removed or changed
43# since the last public release, then set age to 0.
44#
45# PLEASE NOTE that doing a SO BUMP aka raising the CURRENT REVISION
46# could be avoided using libversioning aka map files.  You MUST change .map
47# files if you raise these versions.
48#
49# Bump the minor release # whenever there is an SOVersion bump.
50m4_define([magick_library_current], [9])
51m4_define([magick_library_revision], [0])
52m4_define([magick_library_age], [0])
53
54m4_define([magickpp_library_current], [5])
55m4_define([magickpp_library_revision], [0])
56m4_define([magickpp_library_age], [0])
57