Skip to content

Commit 6c81ea5

Browse files
committed
Version and Makefile
1 parent ec80a18 commit 6c81ea5

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Customizer-1.14.2.zip

149 KB
Binary file not shown.

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
extract = $(shell grep -A2 $(1) Plugin.php | tail -n1 | tr -d " ;'" | sed "s/return//")
2+
3+
plugin = $(call extract, getPluginName)
4+
version = $(call extract, getPluginVersion)
5+
6+
all:
7+
@echo "Build archive for plugin ${plugin} version=${version}"
8+
@git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip

Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public function getPluginAuthor()
171171

172172
public function getPluginVersion()
173173
{
174-
return '1.14.1';
174+
return '1.14.2';
175175
}
176176

177177
public function getPluginHomepage()

0 commit comments

Comments
 (0)