Currently, if you use WordPress plugin directory (to host your plugin), you can manage updates and version changes using SVN. Anyone who running that plugin will be notified of version changes and will have option to upgrade it automatically.
How can i add, custom message on plugin page (in dashboard) when there is update available?
I’ve answered the same question at WordPress Answers.
The action hook to add a custom message in the update notice is
in_plugin_update_message-{$folder}/{$file}
, being folder/file the ones from the plugin you want to target:And, as you noticed “Anyone who running that plugin will be notified”, this only works for active plugins.
PS: clarifying, it only works for an active plugin if the code is included in that plugin. If we use this code in another active plugin, or Must Use plugin, or in the theme
functions.php
, then the message will be displayed regardless of the target plugin being active or not.