diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE new file mode 100644 index 000000000..fba83222a --- /dev/null +++ b/.github/ISSUE_TEMPLATE @@ -0,0 +1,29 @@ +We use the issue tracker to track bugs with mgo - if you have a usage question, +it's best to try Stack Overflow :) + +Replace this text with your description, and please answer the questions below +before submitting your issue to help us out. Thanks! + +------------------------------------------------------------------------------- + +### What version of MongoDB are you using (`mongod --version`)? +``` + +``` + +### What version of Go are you using (`go version`)? +``` + +``` + +### What operating system and processor architecture are you using (`go env`)? +``` + +``` + +### What did you do? + +If possible, provide a recipe for reproducing the error. +A runnable program is great and really helps! + +### Can you reproduce the issue on the latest `development` branch? \ No newline at end of file diff --git a/README.md b/README.md index 7531fe4e6..76fd05542 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,12 @@ Detailed documentation of the API is available at A [sub-package](https://godoc.org/github.com/globalsign/mgo/bson) that implements the [BSON](http://bsonspec.org) specification is also included, and may be used independently of the driver. +## Supported Versions + +`mgo` is known to work well on (and has integration tests against) MongoDB v3.0, 3.2, 3.4 and 3.6. + +MongoDB 4.0 is currently experimental - we would happily accept PRs to help improve support! + ## Changes * Fixes attempting to authenticate before every query ([details](https://github.com/go-mgo/mgo/issues/254)) * Removes bulk update / delete batch size limitations ([details](https://github.com/go-mgo/mgo/issues/288))