The popcorn-cli binary reports version 0.1.0 when run with --version, but the git tags indicate the current version should be v1.1.46.
Steps to reproduce
$ popcorn-cli --version
popcorn-cli 0.1.0
Expected behavior
The version should match the git tag (1.1.46).
Context
This causes issues with package managers that verify the binary version matches the package version. For example, nixpkgs has a versionCheckHook that failed due to this mismatch.
Could the version in Cargo.toml be updated to match the git tags, or could the git tags be aligned with the Cargo.toml version?