Skip to content

Commit

Permalink
Add dependency updates, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Carlevato committed Sep 22, 2019
1 parent 791ee44 commit d961198
Show file tree
Hide file tree
Showing 10 changed files with 829 additions and 1,155 deletions.
6 changes: 5 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: analytics, utm codes, analytics, google analytics, campaign marketing, lin
Requires at least: 4.7.0
Tested up to: 5.2.1
Requires PHP: 5.6.0
Stable tag: 1.6.1
Stable tag: 1.6.2
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -97,6 +97,10 @@ That isn't a question. But thank you.

== Changelog ==

= 1.6.2 =
- Fix quick edit post link hide bug
- Switch tools to WP-CLI for language file generation

= 1.6.1 =
- Fix bug with custom shortener API

Expand Down
4 changes: 2 additions & 2 deletions _test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ Running as single site... To run multisite, use -c tests/phpunit/multisite.xml
Not running ajax tests. To execute these, use --group ajax.
Not running ms-files tests. To execute these, use --group ms-files.
Not running external-http tests. To execute these, use --group external-http.
PHPUnit 7.5.10 by Sebastian Bergmann and contributors.
PHPUnit 7.5.16 by Sebastian Bergmann and contributors.
............................................................. 61 / 61 (100%)
Time: 42 seconds, Memory: 44.00 MB
Time: 33.63 seconds, Memory: 44.00 MB
OK (61 tests, 516 assertions)
Expand Down
8 changes: 4 additions & 4 deletions classes/shorten/class-rebrandly.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Rebrandly implements \UtmDotCodes\Shorten {
const API_URL = 'https://api.rebrandly.com/v1';

/**
* API credentials for Bitly API.
* API credentials for Rebrandly API.
*
* @var string|null The API key for the shortener.
*/
Expand All @@ -36,7 +36,7 @@ class Rebrandly implements \UtmDotCodes\Shorten {
private $error_code;

/**
* Bitly constructor.
* Rebrandly constructor.
*
* @param string $api_key Credentials for API.
*/
Expand Down Expand Up @@ -107,7 +107,7 @@ public function shorten( $data, $query_string ) {
}

/**
* Get response from Bitly API for the request.
* Get response from Rebrandly API for the request.
*
* @inheritDoc
*/
Expand All @@ -116,7 +116,7 @@ public function get_response() {
}

/**
* Get error code/message returned by Bitly API for the request.
* Get error code/message returned by Rebrandly API for the request.
*
* @inheritDoc
*/
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "asdfdotdev/utm.codes",
"version": "1.6.1",
"version": "1.6.2",
"description": "Easily create and manage your marketing tracking links in WordPress for better analytics.",
"type": "wordpress-plugin",
"require-dev": {
Expand All @@ -17,5 +17,6 @@
"email": "[email protected]"
}
],
"minimum-stability": "stable"
"minimum-stability": "stable",
"keywords": ["WordPress", "plugin", "utm codes"]
}
Loading

0 comments on commit d961198

Please sign in to comment.