Skip to content

Commit 4b6c16c

Browse files
authored
DE-1362 Remove confusing version (#119)
1 parent 219ad18 commit 4b6c16c

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
[![CI](https://github.com/mailjet/mailjet-apiv3-go/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/mailjet/mailjet-apiv3-go/actions/workflows/main.yml)
1111
[![GoDoc](https://godoc.org/github.com/mailjet/mailjet-apiv3-go?status.svg)](https://pkg.go.dev/github.com/mailjet/mailjet-apiv3-go/v4)
1212
[![Go Report Card](https://goreportcard.com/badge/github.com/mailjet/mailjet-apiv3-go/v4)](https://goreportcard.com/report/github.com/mailjet/mailjet-apiv3-go/v4)
13-
![Current Version](https://img.shields.io/badge/version-4.0-green.svg)
1413

1514
## Overview
1615

@@ -26,8 +25,7 @@ Check out all the resources and in the [Official Documentation][doc].
2625
- [Functional test](#functional-test)
2726
- [Make your first call](#make-your-first-call)
2827
- [Client / Call configuration specifics](#client--call-configuration-specifics)
29-
- [API versioning](#api-versioning)
30-
- [Send emails through proxy](#send-emails-through-proxy)
28+
- [Send emails through proxy](#send-emails-through-proxy)
3129
- [Request examples](#request-examples)
3230
- [POST request](#post-request)
3331
- [Simple POST request](#simple-post-request)
@@ -38,7 +36,6 @@ Check out all the resources and in the [Official Documentation][doc].
3836
- [Retrieve a single object](#retrieve-a-single-object)
3937
- [PUT request](#put-request)
4038
- [DELETE request](#delete-request)
41-
- [Response](#response)
4239
- [Contribute](#contribute)
4340

4441
## Compatibility
@@ -56,10 +53,9 @@ Get package:
5653
go get github.com/mailjet/mailjet-apiv3-go/v4
5754
```
5855

59-
And create a new MailjetClient:
56+
And import the Mailjet wrapper:
6057

6158
```go
62-
// Import the Mailjet wrapper
6359
import (
6460
"github.com/mailjet/mailjet-apiv3-go/v4"
6561
"github.com/mailjet/mailjet-apiv3-go/v4/resources"

tests/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"time"
1111

12-
mailjet "github.com/mailjet/mailjet-apiv3-go/v4"
12+
"github.com/mailjet/mailjet-apiv3-go/v4"
1313
"github.com/mailjet/mailjet-apiv3-go/v4/resources"
1414
)
1515

0 commit comments

Comments
 (0)