What is the best approach to handle different api versions?
To create separate projects for each:
tapioca-myapi-v1
tapioca-myapi-v2
Or to use the same project but different major version that match the api version?
tapioca-myapi==1.0.0 # for v1
tapioca-myapi==2.0.0 # for v2
which one of these do you think is the best idea, or there is another way to do that?
What is the best approach to handle different api versions?
To create separate projects for each:
Or to use the same project but different major version that match the api version?
which one of these do you think is the best idea, or there is another way to do that?