File tree Expand file tree Collapse file tree 7 files changed +20
-11
lines changed Expand file tree Collapse file tree 7 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 11
11
12
12
# Directories
13
13
/.github export-ignore
14
+ /.phpunit.cache export-ignore
14
15
/.wordpress-org export-ignore
15
16
/bin export-ignore
17
+ /node_modules export-ignore
16
18
/tests export-ignore
19
+ /vendor export-ignore
17
20
18
21
# Files
19
22
/.editorconfig export-ignore
20
23
/.gitattributes export-ignore
21
24
/.gitignore export-ignore
22
25
/.phpcs.xml.dist export-ignore
23
26
/CHANGELOG.md export-ignore
27
+ /clover.xml export-ignore
24
28
/composer.json export-ignore
29
+ /composer.lock export-ignore
30
+ /package.json export-ignore
31
+ /package-lock.json export-ignore
25
32
/phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change 14
14
- name : Checkout repository
15
15
uses : actions/checkout@v4
16
16
17
- - name : Install Dependencies
18
- run : npm install
19
-
20
17
- name : WordPress Plugin Deploy
21
18
uses : 10up/action-wordpress-plugin-deploy@stable
22
19
env :
Original file line number Diff line number Diff line change 1
1
/.phpunit.cache
2
+ /node_modules
3
+ /vendor
4
+
2
5
/clover.xml
3
6
/composer.lock
4
7
/package-lock.json
5
- /vendor
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.7.1] - 2023-09-09
9
+
10
+ ### Changed
11
+ - Cleanup package code
12
+
8
13
## [ 0.7.0] - 2023-09-09
9
14
10
15
This version requires WordPress 5.7 and PHP 7.4 as a minimum. There are no new features.
@@ -161,6 +166,7 @@ Bug fix release.
161
166
162
167
Initial release.
163
168
169
+ [ 0.7.1 ] : https://github.com/Automattic/ad-code-manager/compare/0.7.0...0.7.1
164
170
[ 0.7.0 ] : https://github.com/Automattic/ad-code-manager/compare/0.6.0...0.7.0
165
171
[ 0.6.0 ] : https://github.com/Automattic/ad-code-manager/compare/0.5...0.6.0
166
172
[ 0.5 ] : https://github.com/Automattic/ad-code-manager/compare/0.4.1...0.5
Original file line number Diff line number Diff line change 1
1
# Ad Code Manager
2
2
3
- Stable tag: 0.7.0
3
+ Stable tag: 0.7.1
4
4
Requires at least: 5.7
5
5
Tested up to: 5.9
6
6
Requires PHP: 7.4
Original file line number Diff line number Diff line change 11
11
* Plugin Name: Ad Code Manager
12
12
* Plugin URI: https://wordpress.org/plugins/ad-code-manager/
13
13
* Description: Easy ad code management.
14
- * Version: 0.7.0
14
+ * Version: 0.7.1
15
15
* Author: Automattic and contributors
16
16
* Author URI: https://github.com/Automattic/ad-code-manager/graphs/contributors
17
17
* Text Domain: ad-code-manager
30
30
use Automattic \AdCodeManager \UI \Contextual_Help ;
31
31
use Automattic \AdCodeManager \UI \Plugin_Actions ;
32
32
33
- const AD_CODE_MANAGER_VERSION = '0.7.0 ' ;
33
+ const AD_CODE_MANAGER_VERSION = '0.7.1 ' ;
34
34
const AD_CODE_MANAGER_FILE = __FILE__ ;
35
35
36
36
require_once __DIR__ . '/src/class-acm-provider.php ' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ad-code-manager" ,
3
- "version" : " 0.7.0 " ,
3
+ "version" : " 0.7.1 " ,
4
4
"description" : " Easy ad code management." ,
5
5
"license" : " GPL-2.0-or-later" ,
6
6
"author" : " Automattic" ,
7
7
"repository" : " automattic/ad-code-manager" ,
8
8
"devDependencies" : {
9
- "@actions/github" : " ^2" ,
10
- "replace-in-file" : " ^5" ,
11
- "semver" : " ^7" ,
12
9
"version-bump-prompt" : " ^6.1.0"
13
10
},
14
11
"scripts" : {
You can’t perform that action at this time.
0 commit comments