[PECL-CVS] [pecl-search_engine-solr] master: Packaging 2.9.2
[email protected] (Birgir Haraldsson) Tue, 17 Mar 2026 11:25:57 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Date: 2026-03-17T12:20:30+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/d681b63353bb0b6e826e06540e6e19093fcb4eb9
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/d681b63353bb0b6e826e06540e6e19093fcb4eb9.diff
Packaging 2.9.2
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 e6653e22..83e69bf2 100644
--- a/.docker/entrypoint.sh
+++ b/.docker/entrypoint.sh
@@ -1,5 +1,5 @@
pecl package package.xml
-pecl install ./solr-2.9.1.tgz
+pecl install ./solr-2.9.2.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 97b1860f..65839edc 100644
--- a/docs/documentation.php
+++ b/docs/documentation.php
@@ -19,9 +19,9 @@
define('SOLR_MAJOR_VERSION', 2);
define('SOLR_MINOR_VERSION', 9);
-define('SOLR_PATCH_VERSION', 1);
+define('SOLR_PATCH_VERSION', 2);
-define('SOLR_EXTENSION_VERSION', '2.9.1');
+define('SOLR_EXTENSION_VERSION', '2.9.2');
/**
* Returns the current version of the Apache Solr extension
diff --git a/package.xml b/package.xml
index 674b2c23..8ffa0b00 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-11-24</date>
+ <date>2026-03-17</date>
<version>
- <release>2.9.1</release>
- <api>2.9.1</api>
+ <release>2.9.2</release>
+ <api>2.9.2</api>
</version>
<stability>
<release>stable</release>
@@ -53,7 +53,7 @@ https://github.com/php/pecl-search_engine-solr
<notes>
<![CDATA[
Fixes:
-- Fix maximum required PHP version for pecl
+- Fix maximum required PHP version for PIE
]]>
</notes>
@@ -436,6 +436,25 @@ Fixes:
<!-- Changes to the extension should be tracked here -->
<changelog>
+ <release>
+ <version>
+ <release>2.9.2</release>
+ <api>2.9.2</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <date>2026-03-17</date>
+ <license uri="http://www.php.net/license">PHP License</license>
+ <notes>
+ <![CDATA[
+Fixes:
+- Fix maximum required PHP version for PIE
+
+]]>
+ </notes>
+ </release>
<release>
<version>
<release>2.9.1</release>
diff --git a/src/php_solr_version.h b/src/php_solr_version.h
index d03013e7..f9214ac2 100644
--- a/src/php_solr_version.h
+++ b/src/php_solr_version.h
@@ -23,11 +23,11 @@
#define PHP_SOLR_MAJOR_VERSION 2
#define PHP_SOLR_MINOR_VERSION 9
-#define PHP_SOLR_PATCH_VERSION 1
+#define PHP_SOLR_PATCH_VERSION 2
#define PHP_SOLR_RELEASE_VERSION PHP_SOLR_PATCH_VERSION
-#define PHP_SOLR_VERSION "2.9.1"
+#define PHP_SOLR_VERSION "2.9.2"
#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 0x020901
+#define PHP_SOLR_VERSION_ID 0x020902
-#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.1"
+#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.2"
#endif /* PHP_SOLR_VERSION_H */