Skip to content

Commit ec8853c

Browse files
committed
* Version 2.5.3 released.
========================= Tag sources with `VER-2-5-3'. * docs/VERSION.DLL: Update documentation and bump version number to 2.5.3. * README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj, builds/windows/vc2005/index.html, builds/windows/vc2008/freetype.vcproj, builds/windows/vc2008/index.html, builds/windows/vc2010/freetype.vcxproj, builds/windows/vc2010/index.html, builds/windows/visualc/freetype.dsp, builds/windows/visualc/freetype.vcproj, builds/windows/visualc/index.html, builds/windows/visualce/freetype.dsp, builds/windows/visualce/freetype.vcproj, builds/windows/visualce/index.html, builds/wince/vc2005-ce/freetype.vcproj, builds/wince/vc2005-ce/index.html, builds/wince/vc2008-ce/freetype.vcproj, builds/wince/vc2008-ce/index.html: s/2.5.2/2.5.3/, s/252/253/. * include/freetype/freetype.h (FREETYPE_PATCH): Set to 3. * builds/unix/configure.raw (version_info): Set to 17:2:11. * CMakeLists.txt (VERSION_PATCH): Set to 3. * docs/CHANGES: Updated.
1 parent 0556536 commit ec8853c

25 files changed

+324
-220
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMakeLists.txt
22
#
3-
# Copyright 2013 by
3+
# Copyright 2013, 2014 by
44
# David Turner, Robert Wilhelm, and Werner Lemberg.
55
#
66
# Written by John Cary <[email protected]>
@@ -41,7 +41,7 @@ project(freetype)
4141

4242
set(VERSION_MAJOR "2")
4343
set(VERSION_MINOR "5")
44-
set(VERSION_PATCH "2")
44+
set(VERSION_PATCH "3")
4545
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
4646

4747
# Compiler definitions for building the library

ChangeLog

+37-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
2014-03-06 Werner Lemberg <[email protected]>
2+
3+
* Version 2.5.3 released.
4+
=========================
5+
6+
7+
Tag sources with `VER-2-5-3'.
8+
9+
* docs/VERSION.DLL: Update documentation and bump version number to
10+
2.5.3.
11+
12+
* README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj,
13+
builds/windows/vc2005/index.html,
14+
builds/windows/vc2008/freetype.vcproj,
15+
builds/windows/vc2008/index.html,
16+
builds/windows/vc2010/freetype.vcxproj,
17+
builds/windows/vc2010/index.html,
18+
builds/windows/visualc/freetype.dsp,
19+
builds/windows/visualc/freetype.vcproj,
20+
builds/windows/visualc/index.html,
21+
builds/windows/visualce/freetype.dsp,
22+
builds/windows/visualce/freetype.vcproj,
23+
builds/windows/visualce/index.html,
24+
builds/wince/vc2005-ce/freetype.vcproj,
25+
builds/wince/vc2005-ce/index.html,
26+
builds/wince/vc2008-ce/freetype.vcproj,
27+
builds/wince/vc2008-ce/index.html: s/2.5.2/2.5.3/, s/252/253/.
28+
29+
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 3.
30+
31+
* builds/unix/configure.raw (version_info): Set to 17:2:11.
32+
* CMakeLists.txt (VERSION_PATCH): Set to 3.
33+
* docs/CHANGES: Updated.
34+
135
2014-03-06 Werner Lemberg <[email protected]>
236

337
Fixes for compilation with C++.
@@ -1037,9 +1071,10 @@
10371071
builds/wince/vc2008-ce/freetype.vcproj,
10381072
builds/wince/vc2008-ce/index.html: s/2.5.1/2.5.2/, s/251/252/.
10391073

1040-
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 1.
1074+
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 2.
10411075

10421076
* builds/unix/configure.raw (version_info): Set to 17:1:11.
1077+
* CMakeLists.txt (VERSION_PATCH): Set to 2.
10431078
* docs/CHANGES: Updated.
10441079

10451080
2013-12-07 Werner Lemberg <[email protected]>
@@ -1147,7 +1182,7 @@
11471182
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 1.
11481183

11491184
* builds/unix/configure.raw (version_info): Set to 17:0:11.
1150-
* CMakeLists.txt (VERSION_PATCH): Set to 2.
1185+
* CMakeLists.txt (VERSION_PATCH): Set to 1.
11511186
* docs/CHANGES, docs/release: Updated.
11521187

11531188
2013-11-23 Werner Lemberg <[email protected]>

Jamfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FreeType 2 top Jamfile.
22
#
3-
# Copyright 2001-2011, 2013 by
3+
# Copyright 2001-2014 by
44
# David Turner, Robert Wilhelm, and Werner Lemberg.
55
#
66
# This file is part of the FreeType project, and may only be used, modified,
@@ -195,7 +195,7 @@ rule RefDoc
195195

196196
actions RefDoc
197197
{
198-
python $(FT2_SRC)/tools/docmaker/docmaker.py --prefix=ft2 --title=FreeType-2.5.2 --output=$(DOC_DIR) $(FT2_INCLUDE)/*.h $(FT2_INCLUDE)/config/*.h
198+
python $(FT2_SRC)/tools/docmaker/docmaker.py --prefix=ft2 --title=FreeType-2.5.3 --output=$(DOC_DIR) $(FT2_INCLUDE)/*.h $(FT2_INCLUDE)/config/*.h
199199
}
200200

201201
RefDoc refdoc ;

README

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FreeType 2.5.2
1+
FreeType 2.5.3
22
==============
33

44
Homepage: http://www.freetype.org
@@ -24,9 +24,9 @@
2424

2525
and download one of the following files.
2626

27-
freetype-doc-2.5.2.tar.bz2
28-
freetype-doc-2.5.2.tar.gz
29-
ftdoc252.zip
27+
freetype-doc-2.5.3.tar.bz2
28+
freetype-doc-2.5.3.tar.gz
29+
ftdoc253.zip
3030

3131
To view the documentation online, go to
3232

@@ -70,7 +70,7 @@
7070

7171
----------------------------------------------------------------------
7272

73-
Copyright 2006-2013 by
73+
Copyright 2006-2014 by
7474
David Turner, Robert Wilhelm, and Werner Lemberg.
7575

7676
This file is part of the FreeType project, and may only be used,

builds/unix/configure.raw

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AC_CONFIG_SRCDIR([ftconfig.in])
1717

1818
# Don't forget to update docs/VERSION.DLL!
1919

20-
version_info='17:1:11'
20+
version_info='17:2:11'
2121
AC_SUBST([version_info])
2222
ft_version=`echo $version_info | tr : .`
2323
AC_SUBST([ft_version])

builds/wince/vc2005-ce/freetype.vcproj

+38-38
Large diffs are not rendered by default.

builds/wince/vc2005-ce/index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ <h1>
2121
<li>PPC/SP WM6 (Windows Mobile 6)</li>
2222
</ul>
2323

24-
It compiles the following libraries from the FreeType 2.5.2 sources:</p>
24+
It compiles the following libraries from the FreeType 2.5.3 sources:</p>
2525

2626
<ul>
2727
<pre>
28-
freetype252.lib - release build; single threaded
29-
freetype252_D.lib - debug build; single threaded
30-
freetype252MT.lib - release build; multi-threaded
31-
freetype252MT_D.lib - debug build; multi-threaded</pre>
28+
freetype253.lib - release build; single threaded
29+
freetype253_D.lib - debug build; single threaded
30+
freetype253MT.lib - release build; multi-threaded
31+
freetype253MT_D.lib - debug build; multi-threaded</pre>
3232
</ul>
3333

3434
<p>Be sure to extract the files with the Windows (CR+LF) line endings. ZIP

0 commit comments

Comments
 (0)