Skip to content

Commit

Permalink
Add README-development.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pkubowicz committed Mar 9, 2019
1 parent 55c9437 commit b5f4168
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README-development.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## Building

Compiling:
```
make
```

Running tests:
```
make test
```

After pushing check cross-platform compilation results on commits list on GitHub or directly on [Travis CI](https://travis-ci.org/pkubowicz/opendetex).

## Releasing a new version

1. Create a commit setting version to stable:
- ChangeLog: change UNRELEASED to current date
- Makefile: strip -UNRELEASED from version number
- README: remove UNRELEASED
2. Make sure it works: `make clean test package`
3. Git-tag this version like "v2.8.5"
4. Create a commit setting version to unstable
- revert changes from step 1 and increment version
5. `git push && git push --tags`
6. On GitHub go to Code → Releases → Draft a new release
- attach .tar.bz2 file created by `make package` from step 2

0 comments on commit b5f4168

Please sign in to comment.