Skip to content

Commit 41f536e

Browse files
committed
Prepare 1.6.6 release
1 parent 4d62c0a commit 41f536e

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

package.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@
3333
require_once 'PEAR/PackageFileManager2.php';
3434
PEAR::setErrorHandling(PEAR_ERROR_DIE);
3535

36-
$apiVersion = '1.6.5';
36+
$apiVersion = '1.6.6';
3737
$apiState = 'stable';
3838

39-
$releaseVersion = '1.6.5';
39+
$releaseVersion = '1.6.6';
4040
$releaseState = 'stable';
41-
$releaseNotes =
42-
"Add getCreationDateTime() and getExpirationDateTime() methods to Crypt_GPG_SubKey class.\n";
41+
$releaseNotes = "Fix possible infinite loop.\n"
42+
. "Use configured debug handler also in CLI.\n"
43+
. "Support generating keys without a user name.";
4344

4445
$description =
4546
"This package provides an object oriented interface to GNU Privacy " .
@@ -171,12 +172,10 @@
171172
'crypt-gpg-pinentry'
172173
);
173174

174-
if ( isset($_GET['make'])
175+
if (isset($_GET['make'])
175176
|| (isset($_SERVER['argv']) && @$_SERVER['argv'][1] == 'make')
176177
) {
177178
$package->writePackageFile();
178179
} else {
179180
$package->debugPackageFile();
180181
}
181-
182-
?>

package.xml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,21 @@ This package requires PHP version 5.4.8 or greater.</description>
2929
<email>[email protected]</email>
3030
<active>yes</active>
3131
</lead>
32-
<date>2021-03-16</date>
33-
<time>18:23:23</time>
32+
<date>2021-09-05</date>
33+
<time>10:27:54</time>
3434
<version>
35-
<release>1.6.5</release>
36-
<api>1.6.5</api>
35+
<release>1.6.6</release>
36+
<api>1.6.6</api>
3737
</version>
3838
<stability>
3939
<release>stable</release>
4040
<api>stable</api>
4141
</stability>
4242
<license uri="http://www.gnu.org/copyleft/lesser.html">LGPL</license>
4343
<notes>
44-
Add getCreationDateTime() and getExpirationDateTime() methods to Crypt_GPG_SubKey class.
44+
Fix possible infinite loop.
45+
Use configured debug handler also in CLI.
46+
Support generating keys without a user name.
4547
</notes>
4648
<contents>
4749
<dir baseinstalldir="/" name="/">
@@ -165,17 +167,19 @@ Add getCreationDateTime() and getExpirationDateTime() methods to Crypt_GPG_SubKe
165167
<changelog>
166168
<release>
167169
<version>
168-
<release>1.6.5</release>
169-
<api>1.6.5</api>
170+
<release>1.6.6</release>
171+
<api>1.6.6</api>
170172
</version>
171173
<stability>
172174
<release>stable</release>
173175
<api>stable</api>
174176
</stability>
175-
<date>2021-03-16</date>
177+
<date>2021-09-05</date>
176178
<license uri="http://www.gnu.org/copyleft/lesser.html">LGPL</license>
177179
<notes>
178-
Add getCreationDateTime() and getExpirationDateTime() methods to Crypt_GPG_SubKey class.
180+
Fix possible infinite loop.
181+
Use configured debug handler also in CLI.
182+
Support generating keys without a user name.
179183
</notes>
180184
</release>
181185
</changelog>

0 commit comments

Comments
 (0)