ImageMagick/ImageMagick-6.9.12-44/m4/version.m4
2022-03-28 23:27:27 -07:00

61 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright @ 1999 ImageMagick Studio LLC, a non-profit organization
# dedicated to making software imaging solutions freely available.
#
# You may not use this file except in compliance with the License. You may
# obtain a copy of the License at
#
# https://imagemagick.org/script/license.php
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Given a version number MAJOR.MINOR.MICRO-PATCH, increment the:
#
# 1. MAJOR version for incompatible API changes,
# 2. MINOR version when MICRO version exceeds 15 e.g. 0x60F becomes 0x610
# 3. MICRO version for added functionality in backwards compatible
# manner, and
# 4. PATCH version when you make backwards compatible bug fixes.
#
# Additional labels for pre-release and build metadata are available as
# extensions to the MAJOR.MINOR.MICRO-PATCH format.
#
m4_define([magick_name], [ImageMagick])
m4_define([magick_major_version], [6])
m4_define([magick_minor_version], [9])
m4_define([magick_micro_version], [12])
m4_define([magick_patchlevel_version], [44])
m4_define([magick_base_version],
[magick_major_version.magick_minor_version.magick_micro_version])
m4_define([magick_version],
[magick_base_version-magick_patchlevel_version])
m4_define([magick_bugreport],
[https://github.com/ImageMagick/ImageMagick6/issues])
m4_define([magick_url], [https://legacy.imagemagick.org])
m4_define([magick_lib_version], [0x69C])
m4_define([magick_tarname],[ImageMagick])
#
# If the library source code has changed at all since the last update,
# increment revision (c:r:a becomes c:r+1:a). If any interfaces have been
# added, removed, or changed since the last update, increment current, and set
# revision to 0. If any interfaces have been added since the last public
# release, then increment age. If any interfaces have been removed or changed
# since the last public release, then set age to 0.
#
# PLEASE NOTE that doing a SO BUMP aka raising the CURRENT REVISION
# could be avoided using libversioning aka map files. You MUST change .map
# files if you raise these versions.
#
# Bump the minor release # whenever there is an SOVersion bump.
m4_define([magick_library_current], [7])
m4_define([magick_library_revision], [0])
m4_define([magick_library_age], [0])
m4_define([magickpp_library_current], [9])
m4_define([magickpp_library_revision], [0])
m4_define([magickpp_library_age], [0])