Skip to content

Commit

Permalink
Update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
agoode committed Jun 3, 2010
1 parent 6855b66 commit 177b9ed
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Notable Changes in OpenSlide
============================

Version 3.2.1, 2010-06-03
* Fix crashes on Windows when trying to read Hamamatsu files
* Fix jpeg 7 problems in read_from_one_jpeg
* Quiet the error handling system after the first error

Version 3.2.0, 2010-06-01
* Add experimental CMake support and fixes for building with MSVC
(thanks to Hauke Heibel!)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ endif()
# definine the library version
set(OPENSLIDE_WORLD_VERSION "3")
set(OPENSLIDE_MAJOR_VERSION "2")
set(OPENSLIDE_MINOR_VERSION "0")
set(OPENSLIDE_MINOR_VERSION "1")
set(OPENSLIDE_VERSION_NUMBER ${OPENSLIDE_WORLD_VERSION}.${OPENSLIDE_MAJOR_VERSION}.${OPENSLIDE_MINOR_VERSION})

# create a config.h header-file
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ endif

src_libopenslide_la_CPPFLAGS = -pedantic -D_OPENSLIDE_BUILDING_DLL $(GLIB2_CFLAGS) $(CAIRO_CFLAGS) -DG_LOG_DOMAIN=\"Openslide\" -I$(top_srcdir)/src

src_libopenslide_la_LDFLAGS = -version-info 2:0:2 -no-undefined -Wl,$(WIN32_DLL_TRICKERY)
src_libopenslide_la_LDFLAGS = -version-info 2:1:2 -no-undefined -Wl,$(WIN32_DLL_TRICKERY)


pkginclude_HEADERS = src/openslide.h src/openslide-features.h
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT([OpenSlide], [3.2.0], [[email protected]], [openslide], [https://openslide.cs.cmu.edu])
AC_INIT([OpenSlide], [3.2.1], [[email protected]], [openslide], [https://openslide.cs.cmu.edu])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([foreign subdir-objects 1.11.1 dist-xz])
Expand Down

0 comments on commit 177b9ed

Please sign in to comment.