ebiten/_docs/README.md

19 lines
442 B
Markdown
Raw Normal View History

2016-02-06 21:29:10 +01:00
# How to generate the doc
2016-02-15 16:35:28 +01:00
`go generate .`
2016-02-06 21:29:10 +01:00
# How to run HTTP server
2016-02-15 16:35:28 +01:00
`go run server/main.go`
# How to update the version
2016-09-03 05:27:44 +02:00
0. Check all example work on all platforms
2016-09-02 19:01:20 +02:00
1. Create a new branch from master branch with a version name like 1.2
2016-09-02 19:05:52 +02:00
2. In the new branch:
2017-06-09 04:37:43 +02:00
1. Update version.txt like 1.2.0
2017-07-21 19:39:27 +02:00
2. Add tag like v1.2.0
2016-09-02 19:05:52 +02:00
3. In master branch:
1. Update version.txt in the master branch like 1.3.0-alpha
2. Deploy the doc with `go generate`