Skip to content

Commit 841cd33

Browse files
author
Jean-Paul Argudo
committed
Version 1.4.2 ready to ship (doc/pdf, go.* main.go)
1 parent 738124c commit 841cd33

7 files changed

Lines changed: 39 additions & 16 deletions

File tree

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ echo " go mod tidy"
1010
echo "----------------------------------------------------------------------"
1111
go mod tidy
1212

13+
mkdir -p bin/
14+
1315
rm bin/pgSimload*
1416
echo "----------------------------------------------------------------------"
1517
echo "Building binaries"

doc/04_release_notes.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release notes
22

3+
## Version 1.4.2 (November, 12nd 2024)
4+
5+
### Major changes
6+
7+
- **none** this is mostly a monthly build, to refresh dependencies'versions
8+
9+
### Minor changes
10+
11+
- fixed a small typo in a `sqlloop.go` output
12+
13+
- removed `bin/`
14+
- to lighten sources!
15+
- binaries will be provided only within [the releases](https://github.com/CrunchyData/pgSimload/releases) starting from
16+
today
17+
- reviewed a bit documentation to act that change
18+
19+
- rebuild of binaries with dependencies updates:
20+
- upgraded golang.org/x/crypto v0.28.0 => v0.29.0
21+
- upgraded golang.org/x/sys v0.26.0 => v0.27.0
22+
- upgraded golang.org/x/text v0.19.0 => v0.20.0
23+
324
## Version 1.4.1 (October, 16th 2024)
425

526
### Major changes

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pgSimload v.1.4.1 documentation
1+
# pgSimload v.1.4.2 documentation
22

33
## [Overview](01_overview.md)
44

doc/pgSimload.doc.pdf

1.39 KB
Binary file not shown.

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ require (
88
github.com/MakeNowJust/heredoc v1.0.0
99
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
1010
github.com/jackc/pgx/v5 v5.7.1
11-
golang.org/x/crypto v0.28.0
11+
golang.org/x/crypto v0.29.0
1212
)
1313

1414
require (
1515
github.com/jackc/pgpassfile v1.0.0 // indirect
1616
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
17-
golang.org/x/text v0.19.0 // indirect
17+
golang.org/x/text v0.20.0 // indirect
1818
)
1919

20-
require golang.org/x/sys v0.26.0 // indirect
20+
require golang.org/x/sys v0.27.0 // indirect

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV
2020
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
2121
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
2222
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
23-
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
24-
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
25-
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
26-
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
27-
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
28-
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
29-
golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
30-
golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
31-
golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
32-
golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
23+
golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ=
24+
golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg=
25+
golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ=
26+
golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
27+
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
28+
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
29+
golang.org/x/term v0.26.0 h1:WEQa6V3Gja/BhNxg540hBip/kkaYtRg3cxg4oXSw4AU=
30+
golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E=
31+
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
32+
golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4=
3333
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
3434
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
3535
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ var (
3737
rsleep_time time.Duration
3838
silent_start bool
3939

40-
Version = "v.1.4.1"
41-
Release_date = "October 16th 2024"
40+
Version = "v.1.4.2"
41+
Release_date = "November, 12nd 2024"
4242

4343
License = heredoc.Doc(`
4444
**The PostgreSQL License**

0 commit comments

Comments
 (0)