Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrahl committed Feb 26, 2018
1 parent d1a2998 commit 2253171
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,9 +1,15 @@
# Changelog

## [0.2.1] (2018-02-26)

* Fixed missing cast in examples leading to issues on specific platforms (such
as ARM)

## [0.2.0] (2018-02-12)

* Initial release of RAWRTC



[0.2.1]: https://github.com/rawrtc/rawrtc/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/rawrtc/rawrtc/compare/bd9d1ef15d008fdc24b4d5e3158e775a03ffec16...v0.2.0
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.2)
# TODO: Find a way to keep this in sync with the one in rawrtc.h
project(librawrtc
VERSION 0.2.0)
VERSION 0.2.1)
set(PROJECT_DESCRIPTION
"A WebRTC and ORTC library with a small footprint that runs everywhere.")
set(PROJECT_URL
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Expand Up @@ -9,13 +9,13 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
export GPG_KEY=3FDB14868A2B36D638F3C495F98FBED10482ABA6
```

2. Update version number in `src/CMakeLists.txt`, `src/include/rawrtc.h` and
2. Update version number in `CMakeLists.txt`, `src/include/rawrtc.h` and
`CHANGELOG.md`. Also, update the URL with the corresponding tags.

3. Do a signed commit and signed tag of the release:

```bash
git add src/CMakeLists.txt src/include/rawrtc.h CHANGELOG.md
git add CMakeLists.txt src/include/rawrtc.h CHANGELOG.md
git commit -S${GPG_KEY} -m "Release v${VERSION}"
git tag -u ${GPG_KEY} -m "Release v${VERSION}" v${VERSION}
```
Expand Down
2 changes: 1 addition & 1 deletion src/include/rawrtc.h
Expand Up @@ -30,7 +30,7 @@
*
* TODO: Find a way to keep this in sync with the one in CMakeLists.txt
*/
#define RAWRTC_VERSION "0.2.0"
#define RAWRTC_VERSION "0.2.1"

/*
* Return codes.
Expand Down

0 comments on commit 2253171

Please sign in to comment.