Skip to content

Commit

Permalink
Merge tag 'v7.0.0' into update/v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbalmeida committed Nov 29, 2021
2 parents be85e33 + 6317b1f commit 7d20cc9
Show file tree
Hide file tree
Showing 17 changed files with 730 additions and 712 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: CI
on: [push, pull_request]
env:
go-version: '1.17.x'
jobs:
test:
name: Test
strategy:
matrix:
pg-version: ['11', '12']
pg-version: ['12', '13']
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -22,7 +24,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.15.x
go-version: ${{ env.go-version }}

- name: Run tests
run: go test -p=1 -coverprofile=coverage.text -covermode=atomic ./...
Expand All @@ -48,7 +50,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.15.x
go-version: ${{ env.go-version }}

- name: Publish release
uses: goreleaser/goreleaser-action@v1
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v7.0.0
----------
* Test on PG12 and 13

v6.5.0
----------
* Limit paths in archived runs to first 500 steps
* Use go 1.17

v6.4.0
----------
* 6.4.0 Release Candidate
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ S3 compatible endpoint.

# Deploying

As Archiver is a go application, it compiles to a binary and that binary along with the config file is all
As Archiver is a Go application, it compiles to a binary and that binary along with the config file is all
you need to run it on your server. You can find bundles for each platform in the
[releases directory](https://github.com/nyaruka/rp-archiver/releases). You should only run a single archiver
instance for a deployment.
Expand Down
Loading

0 comments on commit 7d20cc9

Please sign in to comment.