Skip to content

Commit

Permalink
Bump up
Browse files Browse the repository at this point in the history
  • Loading branch information
gocom committed May 1, 2022
1 parent 4c948b3 commit e5c32b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.textile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ h1. Changelog

Here's a summary of changes in each release. The list doesn't include some small changes or updates to test cases.

h2. Version 3.7.7 - upcoming
h2. "Version 3.7.7 - 2022/05/01":https://github.com/textile/php-textile/releases/tag/v3.7.7

* Fix deprecation errors that appear on PHP >= 8.1 about preg_split limit argument's NULL value.

Expand Down
4 changes: 2 additions & 2 deletions scripts/release.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}

$url = 'https://github.com/textile/php-textile/releases/tag/v';
$date = strftime('%Y/%m/%d');
$date = (new DateTime())->format('Y/m/d');
$version = '0.0.0';
$minor = '0.0';
$install = '0.0.*';
Expand Down Expand Up @@ -72,7 +72,7 @@
},
],
'composer.json' => [
'/("dev-master": ")([^"])(")/' => function ($m) use ($minor) {
'/("dev-master": ")([^"])(")/' => function ($m) use ($dev) {
return $m[1] . $dev . $m[2];
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/Netcarver/Textile/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ class Parser
*
* @var string
*/
protected $ver = '3.7.7-dev';
protected $ver = '3.7.7';

/**
* Regular expression snippets.
Expand Down

0 comments on commit e5c32b4

Please sign in to comment.