Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Oct 4, 2019
1 parent f1807e8 commit 0387206
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@ Workflow:
* Custom HTTP client, logger, printer, and failure reporter may be provided by user.
* Custom HTTP request factory may be provided, e.g. from the Google App Engine testing.

## Status
## Versions

Stable branches are available on [`gopkg.in`](http://labix.org/gopkg.in) and will not introduce backward-incompatible changes.
The versions are selected according to the [semantic versioning](https://semver.org/) scheme. Every new major version gets its own stable branch with a backwards compatibility promise. Releases are tagged from stable branches.

Current stable branch is [`v2`](http://gopkg.in/gavv/httpexpect.v2):
The current stable branch is `v2`. Previous branches are still maintained, but no new features are added.

If you're using go.mod, use a versioned import path:

```go
import "gopkg.in/gavv/httpexpect.v2"
import "github.com/gavv/httpexpect/v2"
```

Development is done in `master` branch on github:
Otherwise, use gopkg.in import path:

```go
import "github.com/gavv/httpexpect"
import "gopkg.in/gavv/httpexpect.v2"
```

When the master is merged into a stable branch, a new version tag is assigned to the branch head. The versions are selected according to the [semantic versioning](https://semver.org/) scheme.

## Documentation

Documentation is available on [GoDoc](https://godoc.org/github.com/gavv/httpexpect). It contains an overview and reference.
Expand Down

0 comments on commit 0387206

Please sign in to comment.