diff --git a/CHANGELOG b/CHANGELOG index bdc185dc0..74a35a449 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,15 @@ Change Log for Releases ======================= +## 22.04 + * Added baseline 5G-SA support to srsUE and srsENB + * Added dynamic loading of RF libraries + * Added RRC Redirect to srsUE + * Added support for A5 measurement events to srsENB + * Added Crest Factor Reduction (CFR) for srsENB downlink and srsUE uplink (4G only) + * Raise C++ standard to C++14 + * Other bug-fixes and improved stability and performance in all parts + ## 21.10 * Add initial 5G NSA support to srsENB (tested with OnePlus 5G Nord) * Improved interoperability of srsUE in NSA mode diff --git a/README.md b/README.md index 90659b531..7d4070090 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ srsRAN is a 4G/5G software radio suite developed by [SRS](http://www.srs.io). See the [srsRAN project pages](https://www.srsran.com) for information, guides and project news. The srsRAN suite includes: - * srsUE - a full-stack SDR 4G/5G-NSA UE application (5G-SA coming soon) - * srsENB - a full-stack SDR 4G/5G-NSA eNodeB application (5G-SA coming soon) + * srsUE - a full-stack SDR 4G/5G UE application + * srsENB - a full-stack SDR 4G/5G e(g)NodeB application * srsEPC - a light-weight 4G core network implementation with MME, HSS and S/P-GW For application features, build instructions and user guides see the [srsRAN documentation](https://docs.srsran.com). diff --git a/cmake/modules/SRSRANVersion.cmake b/cmake/modules/SRSRANVersion.cmake index 6bb1e6ebe..dc0395289 100644 --- a/cmake/modules/SRSRANVersion.cmake +++ b/cmake/modules/SRSRANVersion.cmake @@ -6,8 +6,8 @@ # the distribution. # -SET(SRSRAN_VERSION_MAJOR 21) -SET(SRSRAN_VERSION_MINOR 10) +SET(SRSRAN_VERSION_MAJOR 22) +SET(SRSRAN_VERSION_MINOR 04) SET(SRSRAN_VERSION_PATCH 0) SET(SRSRAN_VERSION_STRING "${SRSRAN_VERSION_MAJOR}.${SRSRAN_VERSION_MINOR}.${SRSRAN_VERSION_PATCH}") SET(SRSRAN_SOVERSION 0)