Wordpress - Can I upgrade a plugin to a specific version?
Using WP-CLI you can specify this as described in the official documentation.
$ wp plugin update <plugin>
Using either of the following arguments
--minor
Only perform updates for minor releases (e.g. from 1.3 to 1.4 instead of 2.0)
--patch
Only perform updates for patch releases (e.g. from 1.3 to 1.3.3 instead of 1.4)
--version=<version>
If set, the plugin will be updated to the specified version.
You can also download specific versions from the plugin's SVN.
Say you want a specific version of Yoast.
https://wordpress.org/plugins/wordpress-seo
/
https://plugins.svn.wordpress.org/wordpress-seo
/tags/
The tags
folder lists all the versions.