Skip to content

Commit 095787e

Browse files
committed
Merge branch 'hotfix/2.0.1'
2 parents b8c70b9 + de4d0cc commit 095787e

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
global $pronamic_domain_mapping_version;
1717

18-
$pronamic_domain_mapping_version = '2.0.0';
18+
$pronamic_domain_mapping_version = '2.0.1';
1919

2020
/**
2121
* Holds the Pronamic Domain Mapping DB revision, increments when changes are made to the Pronamic Domain Mapping DB schema.

languages/pronamic_domain_mapping.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Pronamic Domain Mapping 2.0.0\n"
5+
"Project-Id-Version: Pronamic Domain Mapping 2.0.1\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/wp-pronamic-domain-mapping\n"
88
"POT-Creation-Date: 2021-06-25 10:09:00+00:00\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pronamic-domain-mapping",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "The Pronamic Domain Mapping plugin allows you to map domains to custom domain name pages.",
55
"repository": {
66
"type": "git",

pronamic-domain-mapping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: https://www.pronamic.eu/plugins/pronamic-domain-mapping/
55
* Description: The Pronamic Domain Mapping plugin allows you to map domains to custom domain name pages.
66
*
7-
* Version: 2.0.0
7+
* Version: 2.0.1
88
* Requires at least: 3.2
99
*
1010
* Author: Pronamic

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: domain, mapping, landingpage, landingspage, page, dns, map, seo
44
Donate link: https://www.pronamic.eu/donate/?for=wp-plugin-pronamic-domain-mapping&source=wp-plugin-readme-txt
55
Requires at least: 3.2
66
Tested up to: 5.7
7-
Stable tag: 2.0.0
7+
Stable tag: 2.0.1
88
License: GPLv2 or later
99

1010
The Pronamic Domain Mapping plugin allows you to map domains to custom domain name pages.
@@ -75,6 +75,9 @@ Have a question? Make a thread in the support forum and we will get back to you.
7575

7676
== Changelog ==
7777

78+
= 2.0.1 =
79+
* Fixed creating required database table.
80+
7881
= 2.0.0 =
7982
* Added - Added support for block editor on domain name pages.
8083
* Tweak - Supports adding `pronamic_domain_mapping` post type support.

src/Admin.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Pronamic Domain Mapping plugin admin.
1717
*
1818
* @author Remco Tolsma
19-
* @version 2.0.0
19+
* @version 2.0.1
2020
* @since 1.0.0
2121
*/
2222
class Admin {
@@ -297,6 +297,8 @@ public function manage_posts_custom_column( $column, $post_id ) {
297297
* @return void
298298
*/
299299
public function upgrade() {
300+
global $wpdb;
301+
300302
require_once ABSPATH . '/wp-admin/includes/upgrade.php';
301303

302304
$charset_collate = '';

0 commit comments

Comments
 (0)