[PECL-CVS] [pecl-search_engine-solr] master: Packaging: 2.9.0
[email protected] (Birgir Haraldsson)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Date: 2025-11-24T10:28:02+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/daeaab4c3e16e69387fae07ce35f5e9a0a18545f
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/daeaab4c3e16e69387fae07ce35f5e9a0a18545f.diff
Packaging: 2.9.0
Changed paths:
M .docker/entrypoint.sh
M docs/documentation.php
M package.xml
M src/php_solr_version.h
Diff:
diff --git a/.docker/entrypoint.sh b/.docker/entrypoint.sh
index 309ea975..d940126b 100644
--- a/.docker/entrypoint.sh
+++ b/.docker/entrypoint.sh
@@ -1,5 +1,5 @@
pecl package package.xml
-pecl install ./solr-2.8.1.tgz
+pecl install ./solr-2.9.0.tgz
echo "extension=solr.so" > /usr/local/etc/php/conf.d/solr.ini
php -m | grep solr
bash
diff --git a/docs/documentation.php b/docs/documentation.php
index 1a7c7d05..74ec68b7 100644
--- a/docs/documentation.php
+++ b/docs/documentation.php
@@ -18,10 +18,10 @@
*/
define('SOLR_MAJOR_VERSION', 2);
-define('SOLR_MINOR_VERSION', 8);
-define('SOLR_PATCH_VERSION', 1);
+define('SOLR_MINOR_VERSION', 9);
+define('SOLR_PATCH_VERSION', 0);
-define('SOLR_EXTENSION_VERSION', '2.8.1');
+define('SOLR_EXTENSION_VERSION', '2.9.0');
/**
* Returns the current version of the Apache Solr extension
diff --git a/package.xml b/package.xml
index 2ad76dbb..db0ee79b 100644
--- a/package.xml
+++ b/package.xml
@@ -38,10 +38,10 @@ https://github.com/php/pecl-search_engine-solr
<email>[email protected]</email>
<active>yes</active>
</lead>
- <date>2025-04-22</date>
+ <date>2025-11-24</date>
<version>
- <release>2.8.1</release>
- <api>2.8.1</api>
+ <release>2.9.0</release>
+ <api>2.9.0</api>
</version>
<stability>
<release>stable</release>
@@ -52,8 +52,13 @@ https://github.com/php/pecl-search_engine-solr
<!-- Notes for the latest release -->
<notes>
<![CDATA[
+Features:
+- Support PHP 8.5 (#88)
+- Support PIE installer (#82)
+
Fixes:
-- Fix return type of SolrUtils::escapeQueryChars() (#83)
+- Fix curl deprecations (#90)
+- Remove unused dependency on libxml extension (#93)
]]>
</notes>
@@ -436,6 +441,30 @@ Fixes:
<!-- Changes to the extension should be tracked here -->
<changelog>
+ <release>
+ <version>
+ <release>2.9.0</release>
+ <api>2.9.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <date>2025-11-24</date>
+ <license uri="http://www.php.net/license">PHP License</license>
+ <notes>
+ <![CDATA[
+Features:
+- Support PHP 8.5 (#88)
+- Support PIE installer (#82)
+
+Fixes:
+- Fix curl deprecations (#90)
+- Remove unused dependency on libxml extension (#93)
+
+]]>
+ </notes>
+ </release>
<release>
<version>
<release>2.8.1</release>
diff --git a/src/php_solr_version.h b/src/php_solr_version.h
index 1702dc70..7c572873 100644
--- a/src/php_solr_version.h
+++ b/src/php_solr_version.h
@@ -22,12 +22,12 @@
#define PHP_SOLR_VERSION_H
#define PHP_SOLR_MAJOR_VERSION 2
-#define PHP_SOLR_MINOR_VERSION 8
-#define PHP_SOLR_PATCH_VERSION 1
+#define PHP_SOLR_MINOR_VERSION 9
+#define PHP_SOLR_PATCH_VERSION 0
#define PHP_SOLR_RELEASE_VERSION PHP_SOLR_PATCH_VERSION
-#define PHP_SOLR_VERSION "2.8.1"
+#define PHP_SOLR_VERSION "2.9.0"
#define PHP_SOLR_DOTTED_VERSION PHP_SOLR_VERSION
@@ -50,9 +50,9 @@
* comparisons with greater than and less than work.
*/
-#define PHP_SOLR_VERSION_ID 0x020801
+#define PHP_SOLR_VERSION_ID 0x020900
-#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.8.1"
+#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.0"
#endif /* PHP_SOLR_VERSION_H */