Skip to content

Commit

Permalink
Update version to beta1
Browse files Browse the repository at this point in the history
Things are much more stable and tested.
Documentation is still missing.

Signed-off-by: Luca Fulchir <luker@fenrirproject.org>
  • Loading branch information
LucaFulchir committed Mar 30, 2018
1 parent 02c69d1 commit 5138945
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
@@ -1,4 +1,4 @@
v1.0.0 (alpha):
v1.0.0 (beta):
* C++98 compatibility (untested)
* we are now a header-only library that can be compiled and linked to C/C++98, with RFC and RAW API
* RAW API block size is now typesafe.
Expand All @@ -9,10 +9,12 @@ v1.0.0 (alpha):
* precomputation caching
* cached result can be compressed (raw/LZ4)
* RFC API: global multithreading instead of per-class
* RFC compliance
* CLI tool for raw API
* OSX/BSD support
v0.1.10 (unreleased):
* backported MAC/FreeBSD support (and incomplete windows)
* backported RFC compliance
v0.1.9:
* remember to bump up version in the cmake -.-'
* squashed warnings for gcc & clang in 32 bit mode.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -23,7 +23,7 @@ enable_language(CXX)
enable_language(C)

set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake; ${CMAKE_MODULE_PATH})
set(RQ_VERSION 1.0.0-alpha1)
set(RQ_VERSION 1.0.0-beta1)
set(RQ_ABI 1)
message(STATUS "libRaptorQ version ${RQ_VERSION}")
add_definitions(-DRQ_VERSION="${RQ_VERSION}")
Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -7,8 +7,9 @@
[Homepage](https://www.fenrirproject.org/Luker/libRaptorQ/wikis/home)


stable release: **v0.1.9**
current release: **v1.0.0-alpha1**
stable release: **v0.1.10**
> Note: v0.1.10 is not compatible with prefivous versions, which were not RFC compliant!
current release: **v1.0.0-beta1**

RaptorQ is a **Forward Error Correction** algorithm designed to deliver your data
efficiently and without retransmissions for lost packets.
Expand Down
2 changes: 1 addition & 1 deletion src/RaptorQ/v1/common.hpp
Expand Up @@ -81,7 +81,7 @@
static char RaptorQ_version[] = RQ_VERSION;
#else
// let's see if I remember to update this...
static char RaptorQ_version[] = "1.0.0-alpha1";
static char RaptorQ_version[] = "1.0.0-beta1";
#endif
#define RQ_UNUSED(x) ((void)x)
#pragma GCC diagnostic pop
Expand Down

0 comments on commit 5138945

Please sign in to comment.