There's a couple of different ways to solve recurrences: substitution, recurrence tree and master theorem. Master theorem won't work in the case, because it doesn't fit the master theorem form.
You could use the other two methods, but the easiest way for this problem is to solve it iteratively.
T(n) = 2T(n-1) + 1
T(n) = 4T(n-2) + 2 + 1
T(n) = 8T(n-3) + 4 + 2 + 1
T(n) = ...
See the pattern?
T(n) = 2^(n-1)T(1) + 2^(n-2) + 2^(n-3) + ... + 1
T(n) = 2^(n-1)2 + 2^(n-2) + 2^(n-3) + ... + 1
T(n) = 2^n + 2^(n-2) + 2^(n-3) + ... + 1
Therefore, the tightest bound is Theta(2^n).
