commit 64113b70adff816d1d7885500abfb99461e40838
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Jun 23 13:35:22 2014 -0400

    1.36.4

 NEWS | 7 +++++++
 1 file changed, 7 insertions(+)

commit 4901fb74b3c1137d13a6b7e4e8784577c1816e47
Author: Emmanuele Bassi <ebassi@gnome.org>
Date:   Fri Jun 20 11:39:15 2014 +0100

    ot-info: Update after API break in HarfBuzz

 pango/pango-ot-info.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit e728c4c3659cc0ead406344b4cf98c0676cb769e
Author: Emmanuele Bassi <ebassi@gnome.org>
Date:   Fri Jun 20 11:38:19 2014 +0100

    build: Require Harfbuzz 0.9.29

    There has been an API change in HB:

        -hb_ot_layout_language_get_required_feature_index
        +hb_ot_layout_language_get_required_feature

    Commit: da132937989acb4d8ca9bd41c79f98750e7dda30

    So we need to bump the dependency.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 715ed720eced19967a88871c9712d8e4e4de03b9
Author: Emmanuele Bassi <ebassi@gnome.org>
Date:   Fri Jun 20 11:26:33 2014 +0100

    Fix introspection annotation

    Missing colon broke the g-ir-scanner.

 pango/shape.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aee1d73950792744af73d7cec5cb867906c225af
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Tue Jun 10 19:46:55 2014 -0400

    Update PangoWeight documentation

    A while ago, we added a weight of 1000 to the enumeration, but
    neglected to update the allowed values in the documentation.
    Fix that.

 pango/pango-font.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 809246a62d5ca91f7321f8239db50b77eaaef021
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Mon Jun 9 10:49:53 2014 +0800

    MSVC 2010+ Projects: Update "Installation" Process

    Currently, due to the way that Visual Studio 2010+ projects are
    handled,
    the "install" project does not re-build upon changes to the sources,
    as it
    does not believe that its dependencies have changed, although
    the changed
    sources are automatically recompiled.  This means that if a part
    or more
    of the solution does not build, or if the sources need some other
    fixes
    or enhancements, the up-to-date build is not copied automatically,
    which
    can be misleading.

    Improve on the situation by forcing the "install" project to
    trigger its
    rebuild, so that the updated binaries can be copied.  This does
    trigger an
    MSBuild warning, but having that warning is way better than not
    having an
    up-to-date build, especially during testing and development.

 build/win32/vs10/install.vcxproj         | 52
 +++++++++++++++++---------------
 build/win32/vs10/pango-install-bin.props |  2 +-
 build/win32/vs10/pango-install.propsin   | 14 ++++++++-
 3 files changed, 42 insertions(+), 26 deletions(-)

commit 35fbbe32ae49cb80130be4d0cd7d375dfef6d2ad
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Sat May 31 00:19:57 2014 -0400

    testsuite: put installed tests in the right place

    Follow the prevailing practice and put the installed tests
    into $libdir/installed-tests/$PACKAGE instead of
    $pkglibdir/installed-tests.

 tests/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c039b91c429383826ca4becbcb4c87e9d7c983b4
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Thu May 8 17:13:52 2014 -0400

    Typo

    Oops

 pango/pango-renderer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 17fc3aad5a0084ac8c31b09807bf8e03a01569b5
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Thu May 8 17:00:30 2014 -0400

    Bug 729840 - Missing annotation for get_color

 pango/pango-renderer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6a7834465b3e188744673f8e335737464e4d15de
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Wed Apr 9 20:50:50 2014 -0700

    [win32] Fixup previous commit

 pango/pangowin32-fontmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b75a1c26e3436c58b6ce2b56e31768ad115b6bed
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Wed Apr 9 16:55:12 2014 -0700

    [win32] Improve threadsafety

    Based on patch from Chun-wei Fan.  Original patch comments:

    Improve the thread-safety situation on Windows by only allowing the
    pango_aliases_ht GHashTable be populated once.

    Pango on Windows is not yet thread-safe, but with the thread safety
    patch on Cairo-Win32-Font[1], it does seem that the test program
    test-pangocairo-threads does not crash randomly anymore, which seems
    to be an improvement.

    [1]: https://bugs.freedesktop.org/show_bug.cgi?id=73012

    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=695913

 pango/pangowin32-fontmap.c | 46
 +++++++++++++++++++++++++---------------------
 1 file changed, 25 insertions(+), 21 deletions(-)

commit 124a3728b5b73a6204bdea66cc502916e0847e69
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
Date:   Wed Apr 2 11:52:01 2014 +0800

    MSVC Builds: Fix "Installation" for MSVC 2010 and Later

    We need to create $(prefix)\etc\pango before trying to create
    a default
    pango.aliases file, otherwise it wouldn't work.

 build/win32/vs10/pango-install.propsin | 2 ++
 1 file changed, 2 insertions(+)

commit 2432e6a180a18933d45de91f03f4abcc9eae8e8c
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Mon Mar 17 21:17:12 2014 -0400

    Bump version

 NEWS         | 7 +++++++
 configure.ac | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)