You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: improve install version constraint guidance (#332)
Closes#331.
## Summary
- make `dbc install -h` explicitly mention version constraints and link
to the detailed docs
- add a regression test for the install help output
- add a visible version-constraint callout on the docs home page
- make the CLI reference point directly to the version-constraints guide
## Validation
- `go test ./...`
- `go run ./cmd/dbc install -h`
---------
Co-authored-by: Bryce Mecum <petridish@gmail.com>
: Name of the driver to install. Can be a short driver name or a driver name with version requirement. Examples: `bigquery`, `bigquery=1.0.0`, `bigquery>1`. Can also be a path to a local driver archive, see [Installing Drivers: From Local Archive](../guides/installing.md#from-local-archive) for more information.
102
+
: Name of the driver to install. This can be a plain driver name like `bigquery`, a driver name with a version constraint like `bigquery=1.0.0` or `bigquery>=1,<2`, or a path to a local driver archive.
103
+
104
+
For the full version-constraint syntax and more examples, see [Installing Drivers: Version Constraints](../guides/installing.md#version-constraints). For local archives, see [Installing Drivers: From Local Archive](../guides/installing.md#from-local-archive).
0 commit comments