Skip to content

Commit

Permalink
Merge pull request #214 from VictorAvelar/chore/housekeeping-012023
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorAvelar authored Jan 2, 2023
2 parents 27da3ad + aa5de87 commit dbcb3af
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 615 deletions.
7 changes: 6 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Project files and directories

.git
.github
docs
Expand All @@ -13,17 +14,21 @@ Makefile
*.md

# Binaries for programs and plugins

*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, build with `go test -c`

*.test

# Output of the go coverage tool, specifically when used with LiteIDE

*.out

# Visual Studio Code
.vscode

.vscode
28 changes: 19 additions & 9 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@ project_name: mollie-api-golang
build:
skip: true
changelog:
sort: desc
use: github
sort: asc
groups:
- title: "New Features and updates"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 10
- title: "Documentation updates"
regexp: "^.*docs[(\\w)]*:+.*$"
order: 20
- title: Other work
order: 999
filters:
exclude:
- '^docs:'
- '^test:'
- '^chore'
- 'changelog'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
- ^test
- changelog
- typo
- Readme
- ^Merge pull request
- ^Merge branch
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ cover-report: test-local

clean:
@go mod verify
@go mod tidy
@go mod tidy -go=1.16
@go mod tidy -go=1.17
.PHONY: clean

update-docs:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ For leveraging [Mollie Connect](https://docs.mollie.com/oauth/overview) (advance

## Install

```shell
go get -u github.com/VictorAvelar/mollie-api-go/v3
```sh
go get -u github.com/VictorAvelar/mollie-api-go/v3/mollie
```

## Usage

#### Create a basic client
### Create a basic client

```go
// main.go
Expand All @@ -53,7 +53,7 @@ if err != nil {
// do your operations with the authenticated client
```

## Upgrage guide
## Upgrade guide

If you want to upgrade from v2 -> v3, the list of breaking and notable changes can be found in the [docs](docs/v3-upgrade.md).

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Supported Versions

Even though go offers full backwards compatibility, this package will only be concerned about the versions tested and
declared inside the `.scrutinizer.yml` file.
declared inside the `.github/workflows/main.yml` file.

| Version | Supported |
| ------- | ------------------ |
Expand Down
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ go 1.17
require (
github.com/google/go-querystring v1.1.0
github.com/stretchr/testify v1.8.1
golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1
golang.org/x/oauth2 v0.3.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/net v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
614 changes: 17 additions & 597 deletions go.sum

Large diffs are not rendered by default.

0 comments on commit dbcb3af

Please sign in to comment.