Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrahl committed Mar 2, 2019
1 parent bd81d57 commit c6cd5de
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog

## [0.3.0] (2019-03-02)

* Split the stack into three separate entities (major)
- RAWRTC (this repository) contains the WebRTC/ORTC API, the ICE/DTLS stack
and bindings to the data channel implementation.
- [RAWRTCDC](https://github.com/rawrtc/rawrtc-data-channel) contains the data
channel implementation
- [RAWRTCC](https://github.com/rawrtc/rawrtc-common) contains common
functionality required by both RAWRTC and RAWRTCDC
* Added a gathering timeout
* Fixed various issues with the ICE transport states

## [0.2.2] (2018-04-14)

* Fixed parsing the DTLS role in the peer connection API
Expand All @@ -15,6 +27,7 @@



[0.3.0]: https://github.com/rawrtc/rawrtc/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/rawrtc/rawrtc/compare/v0.2.1...v0.2.2
[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.2)
VERSION 0.3.0)
set(PROJECT_DESCRIPTION
"A WebRTC and ORTC library with a small footprint that runs everywhere.")
set(PROJECT_URL
Expand Down
2 changes: 1 addition & 1 deletion src/include/rawrtc.h
Expand Up @@ -21,7 +21,7 @@
*
* TODO: Find a way to keep this in sync with the one in CMakeLists.txt
*/
#define RAWRTC_VERSION "0.2.2"
#define RAWRTC_VERSION "0.3.0"

/*
* SDP type.
Expand Down

0 comments on commit c6cd5de

Please sign in to comment.