~> 1.0
should give me the same version as >= 1.0.0, < 2.0.0
does
#226
Labels
enhancement
Refactor existing code for better performance and quality
Is your feature request related to a problem? Please describe.
(Branching off from #224…)
I've been observing that using
~> 1.0
withtfswitch
gives me the latest1.0.x
release rather than the latest1.x
release.Terraform's docs say:
~> 1.0
is expected to be equivalent to>= 1.0.0, < 2.0.0
, but shorter.I just upgraded a bunch of Homebrew packages yesterday, so now I have 0.13.1218. But I've been observing it since Terraform 1.1 came out.
This is my alias for
cd
:versions.tf
is:Describe the solution you'd like
~> 1.0
should give me the same version as>= 1.0.0, < 2.0.0
does.The text was updated successfully, but these errors were encountered: