Bumped version to v2

This commit is contained in:
Alexandre Cesaro 2015-09-02 13:41:40 +02:00
parent 3d70844b0b
commit 7c4e18080b
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). 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. - Mailer has been removed. It has been replaced by Dialer and Sender.
- `File` type and the `CreateFile` and `OpenFile` functions have been removed. - `File` type and the `CreateFile` and `OpenFile` functions have been removed.

View File

@ -1,5 +1,5 @@
# Gomail # 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 ## Introduction
@ -26,17 +26,17 @@ Gomail supports:
## Documentation ## Documentation
https://godoc.org/gopkg.in/gomail.v2-unstable https://godoc.org/gopkg.in/gomail.v2
## Download ## Download
go get gopkg.in/gomail.v2-unstable go get gopkg.in/gomail.v2
## Examples ## 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 ## FAQ

View File

@ -7,7 +7,7 @@ import (
"log" "log"
"time" "time"
"gopkg.in/gomail.v2-unstable" "gopkg.in/gomail.v2"
) )
func Example() { func Example() {