Bumped version to v2
This commit is contained in:
parent
3d70844b0b
commit
7c4e18080b
|
@ -2,7 +2,7 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2.0.0] - unreleased
|
||||
## [2.0.0] - 2015-09-02
|
||||
|
||||
- Mailer has been removed. It has been replaced by Dialer and Sender.
|
||||
- `File` type and the `CreateFile` and `OpenFile` functions have been removed.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Gomail
|
||||
[![Build Status](https://travis-ci.org/go-gomail/gomail.svg?branch=v2-unstable)](https://travis-ci.org/go-gomail/gomail) [![Code Coverage](http://gocover.io/_badge/gopkg.in/gomail.v2-unstable)](http://gocover.io/gopkg.in/gomail.v2-unstable) [![Documentation](https://godoc.org/gopkg.in/gomail.v2-unstable?status.svg)](https://godoc.org/gopkg.in/gomail.v2-unstable)
|
||||
[![Build Status](https://travis-ci.org/go-gomail/gomail.svg?branch=v2)](https://travis-ci.org/go-gomail/gomail) [![Code Coverage](http://gocover.io/_badge/gopkg.in/gomail.v2)](http://gocover.io/gopkg.in/gomail.v2) [![Documentation](https://godoc.org/gopkg.in/gomail.v2?status.svg)](https://godoc.org/gopkg.in/gomail.v2)
|
||||
|
||||
## Introduction
|
||||
|
||||
|
@ -26,17 +26,17 @@ Gomail supports:
|
|||
|
||||
## Documentation
|
||||
|
||||
https://godoc.org/gopkg.in/gomail.v2-unstable
|
||||
https://godoc.org/gopkg.in/gomail.v2
|
||||
|
||||
|
||||
## Download
|
||||
|
||||
go get gopkg.in/gomail.v2-unstable
|
||||
go get gopkg.in/gomail.v2
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
See the [examples in the documentation](https://godoc.org/gopkg.in/gomail.v2-unstable#example-package).
|
||||
See the [examples in the documentation](https://godoc.org/gopkg.in/gomail.v2#example-package).
|
||||
|
||||
|
||||
## FAQ
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"log"
|
||||
"time"
|
||||
|
||||
"gopkg.in/gomail.v2-unstable"
|
||||
"gopkg.in/gomail.v2"
|
||||
)
|
||||
|
||||
func Example() {
|
||||
|
|
Loading…
Reference in New Issue