[PECL-CVS] [pecl-search_engine-solr] master: Packaging 2.9.3
[email protected] (Birgir Haraldsson) Wed, 18 Mar 2026 08:15:22 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Date: 2026-03-18T09:12:08+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/e5d7011b6f127c78ec21b7828de165c706828218
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/e5d7011b6f127c78ec21b7828de165c706828218.diff
Packaging 2.9.3
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 83e69bf2..ca78eb9c 100644
--- a/.docker/entrypoint.sh
+++ b/.docker/entrypoint.sh
@@ -1,5 +1,5 @@
pecl package package.xml
-pecl install ./solr-2.9.2.tgz
+pecl install ./solr-2.9.3.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 65839edc..e502cc83 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', 2);
+define('SOLR_PATCH_VERSION', 3);
-define('SOLR_EXTENSION_VERSION', '2.9.2');
+define('SOLR_EXTENSION_VERSION', '2.9.3');
/**
* Returns the current version of the Apache Solr extension
diff --git a/package.xml b/package.xml
index 8ffa0b00..df62fca2 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>2026-03-17</date>
+ <date>2026-03-18</date>
<version>
- <release>2.9.2</release>
- <api>2.9.2</api>
+ <release>2.9.3</release>
+ <api>2.9.3</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 PIE
+- Fix windows CI build issue
]]>
</notes>
@@ -436,6 +436,25 @@ Fixes:
<!-- Changes to the extension should be tracked here -->
<changelog>
+ <release>
+ <version>
+ <release>2.9.3</release>
+ <api>2.9.3</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <date>2026-03-18</date>
+ <license uri="http://www.php.net/license">PHP License</license>
+ <notes>
+ <![CDATA[
+Fixes:
+- Fix window CI build issue
+
+]]>
+ </notes>
+ </release>
<release>
<version>
<release>2.9.2</release>
diff --git a/src/php_solr_version.h b/src/php_solr_version.h
index f9214ac2..8a468de8 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 2
+#define PHP_SOLR_PATCH_VERSION 3
#define PHP_SOLR_RELEASE_VERSION PHP_SOLR_PATCH_VERSION
-#define PHP_SOLR_VERSION "2.9.2"
+#define PHP_SOLR_VERSION "2.9.3"
#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 0x020902
+#define PHP_SOLR_VERSION_ID 0x020903
-#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.2"
+#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.3"
#endif /* PHP_SOLR_VERSION_H */