Releases: filhodanuvem/gitql
Releases Β· filhodanuvem/gitql
v2.3.1
v2.3.0
- Gitql binary uses the embed file
version.txt
to outputs thegitql version
command. On every release, the file content is replaced by the correct tag or git commit sha. - Set
.goreleaser.yml
to force it to release to all platforms (including windows).
v2.2.1
DISTINCT and USE branches support
DISTINCT
Use select distinct
to group rows by a certain field.
Eg.: select distinct author from commits where date > '2020-01-01
.
USE
To switch to another branch you can run use <branch>
.
Remove usage of git2go in favour of go-git.
2.1.0 update Dockerfile (#97)
Static binary release
- Provide a static binary for linux and windows 64 bits
- Move from travis to github actions
- remove support to remotes
- use fixed version of OS on github actions
- set short and long flags for cli
COUNT function
Add support to count results. Another amazing work from @budden
Add initial windows support
With a great help of @budden , we allow users to use gitql on windows.
This support is on beta stage, we appreciate any feedback from win users.
NOT Operator
New operators
- Add
LIKE
operator to work better thanin
- 6716a7 - Add
<>
as not equal operator - f0d7b3 - Allow
in
operator to work withorder by
- aab37b
Thanks to @luizperes , @jsixface and other contributors who works a lot on these operators.