Release documentation (#13)

This commit is contained in:
Charlie Revett 2018-02-02 19:04:56 +00:00 committed by GitHub
parent 6e3f1ec43e
commit 5aed624f1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 36 additions and 20 deletions

16
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View file

@ -0,0 +1,16 @@
### Problem
...
### Solution
...
### Notes
Use [semver](https://semver.org/) to bump `VERSION`, and remember to run the following after
merging your PR:
```
make push-tag
```

View file

@ -1,11 +1,13 @@
# Contributing
First, thank you for contributing! We love and encourage pull requests from everyone.
Before submitting major changes, here are a few guidelines to follow:
First, thank you for contributing! We love and encourage pull requests from everyone. Please
follow the guidelines:
1. Check the open issues and pull requests for existing discussions.
2. Open an issue first, to discuss a new feature or enhancement.
3. Write tests, and make sure the test suite passes locally and on CI.
4. Open a pull request, and reference the relevant issue(s).
5. After receiving feedback, squash your commits and add a great commit message.
6. Have fun!
1. Check the open [issues](https://github.com/CityOfZion/neo-go/issues) and
[pull requests](https://github.com/CityOfZion/neo-go/pulls) for existing discussions.
1. Open an issue first, to discuss a new feature or enhancement.
1. Write tests, and make sure the test suite passes locally and on CI.
1. Open a pull request, and reference the relevant issue(s).
1. After receiving feedback, squash your commits and add a great commit message.
1. Run `make push-tag` after merging your pull request.
1. **Have fun!**

View file

@ -12,8 +12,14 @@
</p>
<p align="center">
<a href="https://travis-ci.org/anthdm/neo-go">
<img src="https://travis-ci.org/anthdm/neo-go.svg?branch=master">
<a href="https://github.com/CityOfZion/neo-go/releases">
<img src="https://img.shields.io/github/tag/CityOfZion/neo-go.svg?style=flat">
</a>
<a href="https://circleci.com/gh/CityOfZion/neo-go/tree/master">
<img src="https://circleci.com/gh/CityOfZion/neo-go/tree/master.svg?style=shield">
</a>
<a href="https://goreportcard.com/report/github.com/CityOfZion/neo-go">
<img src="https://goreportcard.com/badge/github.com/CityOfZion/neo-go">
</a>
</p>

View file

@ -1 +1 @@
0.3.0
0.4.0

View file

@ -54,24 +54,18 @@ workflows:
filters:
tags:
only: /[0-9]+\.[0-9]+\.[0-9]+/
branches:
ignore: master
- test:
requires:
- install_deps
filters:
tags:
only: /[0-9]+\.[0-9]+\.[0-9]+/
branches:
ignore: master
- vet:
requires:
- install_deps
filters:
tags:
only: /[0-9]+\.[0-9]+\.[0-9]+/
branches:
ignore: master
- check_version:
filters:
branches:
@ -81,6 +75,4 @@ workflows:
- install_deps
filters:
tags:
only: /[0-9]+\.[0-9]+\.[0-9]+/
branches:
ignore: master
only: /[0-9]+\.[0-9]+\.[0-9]+/