File tree Expand file tree Collapse file tree 3 files changed +18
-12
lines changed
Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 1+ ## v1.11.1 [ 2024-05-11]
2+ _ Bug fixes_
3+ * Republish to fix bad Linux Arm build.
4+
15## v1.11.0 [ 2024-04-03]
26_ Whats new_
37* Add support for pushing down sort order. ([ #447 ] ( https://github.com/turbot/steampipe-postgres-fdw/issues/447 ) )
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ go version
2828exit_if_failed
2929echo " "
3030
31- echo " Checkout to cloned fdw anywhere repo"
32- cd steampipe-postgres-fdw-anywhere
31+ echo " Checkout to cloned fdw repo"
32+ cd steampipe-postgres-fdw
3333pwd
3434echo " "
3535
@@ -43,21 +43,23 @@ git restore .
4343exit_if_failed
4444echo " "
4545
46- # echo "git fetch"
47- # git fetch
48- # exit_if_failed
49- # echo ""
46+ echo " git fetch"
47+ git fetch
48+ exit_if_failed
49+ echo " "
50+
51+ echo " git pull origin main"
52+ git checkout main
53+ git pull origin main
54+ exit_if_failed
55+ echo " "
5056
51- # echo "git pull origin main"
52- # git checkout main
53- # git pull origin main
54- # exit_if_failed
55- # echo ""
5657
5758echo " git checkout <tag>"
5859input=$1
5960echo $input
6061git checkout $input
62+ exit_if_failed
6163git branch --list
6264exit_if_failed
6365echo " "
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
1111)
1212
1313// The main version number that is being run at the moment.
14- var fdwVersion = "1.11.0 "
14+ var fdwVersion = "1.11.1 "
1515
1616// A pre-release marker for the version. If this is "" (empty string)
1717// then it means that it is a final release. Otherwise, this is a pre-release
You can’t perform that action at this time.
0 commit comments