Skip to content

Commit 38b6547

Browse files
committed
bump version, doc tweaks
more sotons removed
1 parent a5b0409 commit 38b6547

File tree

5 files changed

+337
-13
lines changed

5 files changed

+337
-13
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
7/4/17 started 8.5.3
2+
- more link fixing in docs
3+
14
25/3/17 started 8.5.2
25
- better behaviour for truncated PNG files, thanks Yury
36
- missing proto for vips_tiffsave_buffer(), thanks greut

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
libvips is a 2D image processing library. Compared to
77
similar libraries, [libvips runs quickly and uses little
8-
memory](http://www.vips.ecs.soton.ac.uk/index.php?title=Speed_and_Memory_Use).
8+
memory](https://github.com/jcupitt/libvips/wiki/Speed-and-memory-use).
99
libvips is licensed under the LGPL 2.1+.
1010

1111
It has around 300 operations covering arithmetic, histograms,
@@ -17,20 +17,20 @@ PDF, SVG, HDR, PPM, CSV, GIF, Analyze, DeepZoom, and OpenSlide. It can
1717
also load images via ImageMagick or GraphicsMagick.
1818

1919
It has APIs for
20-
[C](http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/using-from-c.html)
20+
[C](http://jcupitt.github.io/libvips/API/current/using-from-c.html)
2121
and
22-
[C++](http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/using-from-cpp.html)
22+
[C++](http://jcupitt.github.io/libvips/API/current/using-from-cpp.html)
2323
and comes with a [Python
24-
binding](http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/using-from-python.html)
24+
binding](http://jcupitt.github.io/libvips/API/current/using-from-python.html)
2525
and a [command-line
26-
interface](http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/using-cli.html).
26+
interface](http://jcupitt.github.io/libvips/API/current/using-cli.html).
2727
Bindings are available for [Ruby](https://rubygems.org/gems/ruby-vips),
2828
[PHP](https://github.com/jcupitt/php-vips),
2929
[Go](https://github.com/davidbyttow/govips),
3030
JavaScript and others. There is full
31-
[documentation](http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/index.html).
31+
[documentation](http://jcupitt.github.io/libvips/API/current).
3232
There are several GUIs as well, see the [VIPS
33-
website](http://www.vips.ecs.soton.ac.uk).
33+
website](http://jcupitt.github.io/libvips).
3434

3535
There are packages for most unix-like operating systems and binaries for
3636
Windows and OS X.
@@ -39,7 +39,7 @@ Windows and OS X.
3939

4040
We keep pre-baked tarballs of releases on the vips website:
4141

42-
http://www.vips.ecs.soton.ac.uk/supported/current/
42+
https://github.com/jcupitt/libvips/releases
4343

4444
Untar, then in the libvips directory you should just be able to do:
4545

@@ -65,9 +65,9 @@ Once `configure` is looking OK, compile and install with the usual:
6565
By default this will install files to `/usr/local`.
6666

6767
We have detailed guides on the wiki for [building on
68-
Windows](http://www.vips.ecs.soton.ac.uk/index.php?title=Build_on_windows)
68+
Windows](https://github.com/jcupitt/libvips/wiki/Build_for_Windows)
6969
and [building on OS
70-
X](http://www.vips.ecs.soton.ac.uk/index.php?title=Build_on_OS_X).
70+
X](https://github.com/jcupitt/libvips/wiki/Build_on_OS_X).
7171

7272
# Building libvips from git
7373

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# also update the version number in the m4 macros below
44

5-
AC_INIT([vips], [8.5.2], [vipsip@jiscmail.ac.uk])
5+
AC_INIT([vips], [8.5.3], [vipsip@jiscmail.ac.uk])
66
# required for gobject-introspection
77
AC_PREREQ(2.62)
88

@@ -18,7 +18,7 @@ AC_CONFIG_MACRO_DIR([m4])
1818
# user-visible library versioning
1919
m4_define([vips_major_version], [8])
2020
m4_define([vips_minor_version], [5])
21-
m4_define([vips_micro_version], [2])
21+
m4_define([vips_micro_version], [3])
2222
m4_define([vips_version],
2323
[vips_major_version.vips_minor_version.vips_micro_version])
2424

0 commit comments

Comments
 (0)