[PECL-CVS] [pecl-search_engine-solr] master: Packaging 2.9.1
[email protected] (Birgir Haraldsson)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Date: 2025-11-24T16:58:09+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/9441bf441962f5999dd64a374d5b94044870d7b5
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/9441bf441962f5999dd64a374d5b94044870d7b5.diff
Packaging 2.9.1
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 d940126b..e6653e22 100644
--- a/.docker/entrypoint.sh
+++ b/.docker/entrypoint.sh
@@ -1,5 +1,5 @@
pecl package package.xml
-pecl install ./solr-2.9.0.tgz
+pecl install ./solr-2.9.1.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 74ec68b7..97b1860f 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', 0);
+define('SOLR_PATCH_VERSION', 1);
-define('SOLR_EXTENSION_VERSION', '2.9.0');
+define('SOLR_EXTENSION_VERSION', '2.9.1');
/**
* Returns the current version of the Apache Solr extension
diff --git a/package.xml b/package.xml
index 4bf8930a..674b2c23 100644
--- a/package.xml
+++ b/package.xml
@@ -40,8 +40,8 @@ https://github.com/php/pecl-search_engine-solr
</lead>
<date>2025-11-24</date>
<version>
- <release>2.9.0</release>
- <api>2.9.0</api>
+ <release>2.9.1</release>
+ <api>2.9.1</api>
</version>
<stability>
<release>stable</release>
@@ -52,13 +52,8 @@ 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 curl deprecations (#90)
-- Remove unused dependency on libxml extension (#93)
+- Fix maximum required PHP version for pecl
]]>
</notes>
@@ -441,6 +436,25 @@ Fixes:
<!-- Changes to the extension should be tracked here -->
<changelog>
+ <release>
+ <version>
+ <release>2.9.1</release>
+ <api>2.9.1</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[
+Fixes:
+- Fix maximum required PHP version for pecl
+
+]]>
+ </notes>
+ </release>
<release>
<version>
<release>2.9.0</release>
diff --git a/src/php_solr_version.h b/src/php_solr_version.h
index 7c572873..d03013e7 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 0
+#define PHP_SOLR_PATCH_VERSION 1
#define PHP_SOLR_RELEASE_VERSION PHP_SOLR_PATCH_VERSION
-#define PHP_SOLR_VERSION "2.9.0"
+#define PHP_SOLR_VERSION "2.9.1"
#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 0x020900
+#define PHP_SOLR_VERSION_ID 0x020901
-#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.0"
+#define SOLR_CLIENT_USER_AGENT "PHP Solr Client 2.9.1"
#endif /* PHP_SOLR_VERSION_H */