Skip to content

Commit a763afd

Browse files
committedNov 24, 2016
bump version for pecl release
pecl package uploaded, version bumped to 1.0.0
1 parent 42cee3e commit a763afd

File tree

8 files changed

+41
-17
lines changed

8 files changed

+41
-17
lines changed
 

Diff for: ‎API-0.1.3 renamed to ‎API-1.0.0

File renamed without changes.

Diff for: ‎ChangeLog

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

3+
Version 1.0.0 (2016-11-24)
4+
--------------------------
5+
* Update package for pecl upload
6+
37
Version 0.1.3 (2016-11-04)
48
--------------------------
59
* Fix memleak

Diff for: ‎README.md

+17-5
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ https://github.com/jcupitt/php-vips
3939

4040
### Installing
4141

42-
On macOS, use `brew install php70-vips` to install the libvips library, php and
43-
this php extension.
42+
First install the libvips library. It will be in your package manager on linux,
43+
it's in brew and MacPorts on macOS, or the vips website has Windows binaries.
4444

45-
On Linux, install this extension with:
45+
Next, install this extension:
4646

4747
```
48-
$ pear install vips-0.1.3.tgz
48+
$ pecl install vips
4949
```
5050

5151
And add:
@@ -56,6 +56,18 @@ extension=vips.so
5656

5757
to your `php.ini`.
5858

59+
Finally, add `vips` to your `composer.json` to pull in the high-level PHP API.
60+
61+
```
62+
"require": {
63+
"jcupitt/vips" : "1.0.0"
64+
}
65+
```
66+
67+
The high-level API has all the documentation, see:
68+
69+
https://github.com/jcupitt/php-vips
70+
5971
### Development: preparation
6072

6173
PHP is normally built for speed and is missing a lot of debugging support you
@@ -79,7 +91,7 @@ libvips website, or build your own.
7991
$ pear package
8092
```
8193

82-
to make `vips-0.1.3.tgz`.
94+
to make `vips-1.0.0.tgz`.
8395

8496
To install by hand:
8597

Diff for: ‎RELEASE-0.1.3

Whitespace-only changes.

Diff for: ‎EXPERIMENTAL renamed to ‎RELEASE-1.0.0

File renamed without changes.

Diff for: ‎package.xml

+19-11
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,30 @@ http://pear.php.net/dtd/package-2.0.xsd">
1111
</description>
1212
<lead>
1313
<name>John Cupitt</name>
14-
<user>john</user>
15-
<email>jcupitt@gmail.com</email>
14+
<user>jcupitt</user>
15+
<email>jcupitt@php.net</email>
1616
<active>yes</active>
1717
</lead>
18-
<date>2016-11-05</date>
18+
<date>2016-11-24</date>
1919
<version>
20-
<release>0.1.3</release>
21-
<api>0.1.3</api>
20+
<release>1.0.0</release>
21+
<api>1.0.0</api>
2222
</version>
2323
<stability>
24-
<release>alpha</release>
25-
<api>alpha</api>
24+
<release>stable</release>
25+
<api>stable</api>
2626
</stability>
2727
<license filesource="LICENSE.txt">MIT</license>
2828
<notes>
29-
- First release.
29+
- First stable release.
3030
</notes>
3131
<contents>
3232
<dir name="/">
33-
<file role='doc' name='API-0.1.3'/>
33+
<file role='doc' name='API-1.0.0'/>
3434
<file role='doc' name='CREDITS'/>
35-
<file role='doc' name='EXPERIMENTAL'/>
3635
<file role='doc' name='LICENSE.txt'/>
3736
<file role='doc' name='README.md'/>
38-
<file role='doc' name='RELEASE-0.1.3'/>
37+
<file role='doc' name='RELEASE-1.0.0'/>
3938
<file role='doc' name='ChangeLog'/>
4039

4140
<file role='src' name='config.m4'/>
@@ -89,6 +88,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
8988
</extsrcrelease>
9089
<changelog>
9190

91+
<release>
92+
<stability><release>stable</release><api>stable</api></stability>
93+
<version><release>1.0.0</release><api>1.0.0</api></version>
94+
<date>2016-11-24</date>
95+
<notes>
96+
* Update package for pecl upload
97+
</notes>
98+
</release>
99+
92100
<release>
93101
<stability><release>alpha</release><api>alpha</api></stability>
94102
<version><release>0.1.3</release><api>0.1.3</api></version>

Diff for: ‎php_vips.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
extern zend_module_entry vips_module_entry;
66
#define phpext_vips_ptr &vips_module_entry
77

8-
#define PHP_VIPS_VERSION "0.1.3" /* Replace with version number for your extension */
8+
#define PHP_VIPS_VERSION "1.0.0"
99

1010
#ifdef PHP_WIN32
1111
# define PHP_VIPS_API __declspec(dllexport)

Diff for: ‎vips-1.0.0.tgz

541 KB
Binary file not shown.

0 commit comments

Comments
 (0)