Skip to content

Commit d94ac83

Browse files
committed
package 1.0.13
1 parent c9c7b5b commit d94ac83

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
vips extension changelog
22

3+
Version 1.0.13 (2022-2-xx)
4+
--------------------------
5+
* php8 compatibility [kleisauke]
6+
* improve module linking [kleisauke]
7+
* improve packaging [kleisauke]
8+
* add type hints [jcupitt, kleisauke]
9+
310
Version 1.0.12 (2020-8-xx)
411
--------------------------
512
* vips_image_set_type() can be passed a type name

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Low-level PHP binding for libvips
22

33
This extension lets you use the libvips image processing library
4-
from PHP 7.
4+
from PHP 7 and PHP 8.
55

66
This is not supposed to be used directly! Install this, then use
77
[php-vips](https://github.com/libvips/php-vips) to layer a nice (and
@@ -19,6 +19,7 @@ memory.
1919
#!/usr/bin/env php
2020
<?php
2121

22+
# never use this extension directly! this is just an example
2223
$x = vips_image_new_from_file($argv[1])["out"];
2324
$x = vips_call("invert", $x)["out"];
2425
vips_image_write_to_file($x, $argv[2]);
@@ -94,7 +95,7 @@ libvips website, or build your own.
9495
$ pear package
9596
```
9697

97-
To make `vips-1.0.12.tgz`.
98+
To make `vips-1.0.13.tgz`.
9899

99100
To install by hand:
100101

File renamed without changes.

package.xml

+19-4
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
1515
<email>[email protected]</email>
1616
<active>yes</active>
1717
</lead>
18-
<date>2020-08-29</date>
18+
<date>2022-02-16</date>
1919
<version>
20-
<release>1.0.12</release>
20+
<release>1.0.13</release>
2121
<api>1.0.0</api>
2222
</version>
2323
<stability>
@@ -26,15 +26,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
2626
</stability>
2727
<license filesource="LICENSE.txt">MIT</license>
2828
<notes>
29-
* vips_image_set_type() can be passed a type name
29+
* php8 compatibility [kleisauke]
30+
* improve module linking [kleisauke]
31+
* improve packaging [kleisauke]
32+
* add type hints [jcupitt, kleisauke]
3033
</notes>
3134
<contents>
3235
<dir name="/">
3336
<file role='doc' name='API-1.0.0'/>
3437
<file role='doc' name='CREDITS'/>
3538
<file role='doc' name='LICENSE.txt'/>
3639
<file role='doc' name='README.md'/>
37-
<file role='doc' name='RELEASE-1.0.12'/>
40+
<file role='doc' name='RELEASE-1.0.13'/>
3841
<file role='doc' name='ChangeLog'/>
3942

4043
<file role='src' name='config.m4'/>
@@ -110,6 +113,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
110113
</extsrcrelease>
111114
<changelog>
112115

116+
<release>
117+
<stability><release>stable</release><api>stable</api></stability>
118+
<version><release>1.0.13</release><api>1.0.0</api></version>
119+
<date>2022-02-16</date>
120+
<notes>
121+
* php8 compatibility [kleisauke]
122+
* improve module linking [kleisauke]
123+
* improve packaging [kleisauke]
124+
* add type hints [jcupitt, kleisauke]
125+
</notes>
126+
</release>
127+
113128
<release>
114129
<stability><release>stable</release><api>stable</api></stability>
115130
<version><release>1.0.12</release><api>1.0.0</api></version>

vips-1.0.12.tgz

2.85 KB
Binary file not shown.

vips-1.0.13.tgz

551 KB
Binary file not shown.

0 commit comments

Comments
 (0)