Skip to content

Commit a6e277b

Browse files
Merge pull request #37 from asdfdotdev/development
Version 1.6.2 - Add dependency updates, fix typo
2 parents 791ee44 + d961198 commit a6e277b

10 files changed

Lines changed: 829 additions & 1155 deletions

File tree

README.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: analytics, utm codes, analytics, google analytics, campaign marketing, lin
55
Requires at least: 4.7.0
66
Tested up to: 5.2.1
77
Requires PHP: 5.6.0
8-
Stable tag: 1.6.1
8+
Stable tag: 1.6.2
99
License: GPLv2
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

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

9898
== Changelog ==
9999

100+
= 1.6.2 =
101+
- Fix quick edit post link hide bug
102+
- Switch tools to WP-CLI for language file generation
103+
100104
= 1.6.1 =
101105
- Fix bug with custom shortener API
102106

_test/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ Running as single site... To run multisite, use -c tests/phpunit/multisite.xml
6161
Not running ajax tests. To execute these, use --group ajax.
6262
Not running ms-files tests. To execute these, use --group ms-files.
6363
Not running external-http tests. To execute these, use --group external-http.
64-
PHPUnit 7.5.10 by Sebastian Bergmann and contributors.
64+
PHPUnit 7.5.16 by Sebastian Bergmann and contributors.
6565
6666
............................................................. 61 / 61 (100%)
6767
68-
Time: 42 seconds, Memory: 44.00 MB
68+
Time: 33.63 seconds, Memory: 44.00 MB
6969
7070
OK (61 tests, 516 assertions)
7171

classes/shorten/class-rebrandly.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Rebrandly implements \UtmDotCodes\Shorten {
1515
const API_URL = 'https://api.rebrandly.com/v1';
1616

1717
/**
18-
* API credentials for Bitly API.
18+
* API credentials for Rebrandly API.
1919
*
2020
* @var string|null The API key for the shortener.
2121
*/
@@ -36,7 +36,7 @@ class Rebrandly implements \UtmDotCodes\Shorten {
3636
private $error_code;
3737

3838
/**
39-
* Bitly constructor.
39+
* Rebrandly constructor.
4040
*
4141
* @param string $api_key Credentials for API.
4242
*/
@@ -107,7 +107,7 @@ public function shorten( $data, $query_string ) {
107107
}
108108

109109
/**
110-
* Get response from Bitly API for the request.
110+
* Get response from Rebrandly API for the request.
111111
*
112112
* @inheritDoc
113113
*/
@@ -116,7 +116,7 @@ public function get_response() {
116116
}
117117

118118
/**
119-
* Get error code/message returned by Bitly API for the request.
119+
* Get error code/message returned by Rebrandly API for the request.
120120
*
121121
* @inheritDoc
122122
*/

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asdfdotdev/utm.codes",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"description": "Easily create and manage your marketing tracking links in WordPress for better analytics.",
55
"type": "wordpress-plugin",
66
"require-dev": {
@@ -17,5 +17,6 @@
1717
"email": "hello@asdf.dev"
1818
}
1919
],
20-
"minimum-stability": "stable"
20+
"minimum-stability": "stable",
21+
"keywords": ["WordPress", "plugin", "utm codes"]
2122
}

0 commit comments

Comments
 (0)