Skip to content

Commit 5d4d3f9

Browse files
authored
v1.11.1 (#466)
* update script * v1.11.1 * update script * update script to use correct repo * v1.11.1
1 parent c23034f commit 5d4d3f9

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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))

scripts/script_to_build.sh

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ go version
2828
exit_if_failed
2929
echo ""
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
3333
pwd
3434
echo ""
3535

@@ -43,21 +43,23 @@ git restore .
4343
exit_if_failed
4444
echo ""
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

5758
echo "git checkout <tag>"
5859
input=$1
5960
echo $input
6061
git checkout $input
62+
exit_if_failed
6163
git branch --list
6264
exit_if_failed
6365
echo ""

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)