Skip to content

Plugin release procedure

Konrad Karpieszuk edited this page Jan 11, 2022 · 6 revisions
  • Update plugin version number in plugin.php
  • Update stable tag in readme.txt
  • Update release date in changelog in readme.txt
  • Push changes to master
  • Tag new version on github
  • Copy svn repository with , handy link for the next steps
svn co https://plugins.svn.wordpress.org/editor-box/
  • Put github master into svn trunk
cd editor-box
rm -rf trunk
git clone [email protected]:kkarpieszuk/Editor-Box.git trunk
  • Run composer update
cd trunk
composer update
  • Remove .git, .gitignore, composer.json and assests
rm -rf .git .gitignore composer.json assets
  • Copy trunk into tags/{version number}
cd ..
svn cp trunk/ tags/...
  • Upload changes to svn
svn ci -m "Tagging version ..."
Clone this wiki locally