Indeed, use a subquery to obtain the MAX version, grouped by TITLE, and then join the result of it with your table to obtain the ID:
SELECT t.*
FROM tbl t INNER JOIN
(SELECT title, MAX(version) version
FROM tbl
GROUP BY title
) max_t ON (t.version = max_t.version AND t.title = max_t.title);