Skip to content

Commit

Permalink
bump version for pecl release
Browse files Browse the repository at this point in the history
pecl package uploaded, version bumped to 1.0.0
  • Loading branch information
jcupitt committed Nov 24, 2016
1 parent 42cee3e commit a763afd
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 17 deletions.
File renamed without changes.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
vips extension changelog

Version 1.0.0 (2016-11-24)
--------------------------
* Update package for pecl upload

Version 0.1.3 (2016-11-04)
--------------------------
* Fix memleak
Expand Down
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ https://github.com/jcupitt/php-vips

### Installing

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

On Linux, install this extension with:
Next, install this extension:

```
$ pear install vips-0.1.3.tgz
$ pecl install vips
```

And add:
Expand All @@ -56,6 +56,18 @@ extension=vips.so

to your `php.ini`.

Finally, add `vips` to your `composer.json` to pull in the high-level PHP API.

```
"require": {
"jcupitt/vips" : "1.0.0"
}
```

The high-level API has all the documentation, see:

https://github.com/jcupitt/php-vips

### Development: preparation

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

to make `vips-0.1.3.tgz`.
to make `vips-1.0.0.tgz`.

To install by hand:

Expand Down
Empty file removed RELEASE-0.1.3
Empty file.
File renamed without changes.
30 changes: 19 additions & 11 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,30 @@ http://pear.php.net/dtd/package-2.0.xsd">
</description>
<lead>
<name>John Cupitt</name>
<user>john</user>
<email>jcupitt@gmail.com</email>
<user>jcupitt</user>
<email>jcupitt@php.net</email>
<active>yes</active>
</lead>
<date>2016-11-05</date>
<date>2016-11-24</date>
<version>
<release>0.1.3</release>
<api>0.1.3</api>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
<release>stable</release>
<api>stable</api>
</stability>
<license filesource="LICENSE.txt">MIT</license>
<notes>
- First release.
- First stable release.
</notes>
<contents>
<dir name="/">
<file role='doc' name='API-0.1.3'/>
<file role='doc' name='API-1.0.0'/>
<file role='doc' name='CREDITS'/>
<file role='doc' name='EXPERIMENTAL'/>
<file role='doc' name='LICENSE.txt'/>
<file role='doc' name='README.md'/>
<file role='doc' name='RELEASE-0.1.3'/>
<file role='doc' name='RELEASE-1.0.0'/>
<file role='doc' name='ChangeLog'/>

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

<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>1.0.0</release><api>1.0.0</api></version>
<date>2016-11-24</date>
<notes>
* Update package for pecl upload
</notes>
</release>

<release>
<stability><release>alpha</release><api>alpha</api></stability>
<version><release>0.1.3</release><api>0.1.3</api></version>
Expand Down
2 changes: 1 addition & 1 deletion php_vips.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
extern zend_module_entry vips_module_entry;
#define phpext_vips_ptr &vips_module_entry

#define PHP_VIPS_VERSION "0.1.3" /* Replace with version number for your extension */
#define PHP_VIPS_VERSION "1.0.0"

#ifdef PHP_WIN32
# define PHP_VIPS_API __declspec(dllexport)
Expand Down
Binary file added vips-1.0.0.tgz
Binary file not shown.

0 comments on commit a763afd

Please sign in to comment.