Merge branch 'master' into release/v0.9.0

Этот коммит содержится в:
Fredrik Lönnblad 2020-03-16 08:04:07 -03:00
родитель 4bef0c945a 732eff4c29
коммит 1b471d62c4
4 изменённых файлов: 68 добавлений и 1 удалений

30
.github/ISSUE_TEMPLATE/bug_report.md предоставленный Обычный файл
Просмотреть файл

@ -0,0 +1,30 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---
Please answer these questions before submitting a bug report.
### What version of godog are you using?
```
> godog -version
```
### What version of Go are you using?
```
> go version
```
### What did you do?
If possible, provide a recipe for reproducing the error.
### What did you expect to see?
### What did you see instead?
### Additional context
Add any other context about the problem here.

20
.github/ISSUE_TEMPLATE/feature_request.md предоставленный Обычный файл
Просмотреть файл

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feature
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

17
CONTRIBUTING.md Обычный файл
Просмотреть файл

@ -0,0 +1,17 @@
## About to contribute?
We appreciate that. But before you do, please learn our basic rules:
* Do you have a feature request? Then don't expect it to be implemented unless
you or someone else sends a [pull request](https://help.github.com/articles/using-pull-requests).
* We love [pull requests](https://help.github.com/articles/using-pull-requests),
but if you don't have a test to go with it we probably won't merge it.
* Before making significant contribution consider discussing the outline of
your solution first. This may avoid a duplication of efforts.
Please do *not* add @author tags - this project embraces collective code
ownership. If you want to know who wrote some code, look in git. When you are
done, send a [pull request](http://help.github.com/send-pull-requests/).
If we get a pull request where an entire file is changed because of
insignificant whitespace changes we cannot see what you have changed, and your
contribution might get rejected.

Просмотреть файл

@ -20,6 +20,6 @@ Feature: get version
And the response should match json: And the response should match json:
""" """
{ {
"version": "v0.7.14" "version": "v0.8.1"
} }
""" """