aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG56
-rw-r--r--host/cmake/Modules/UHDVersion.cmake2
2 files changed, 57 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3155ff1f1..b3bbc63c9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,62 @@
Change Log for Releases
==============================
+## 003.011.000.000
+* N310: Added driver
+* UBX: Add support for CAL antenna for Rev E
+* Added the module peripheral manager (MPM) with all subcomponents (N310
+ drivers, mpm_shell, RPC server, BIST, etc.)
+* UHD: Added rpclib as a internally tracked dependency
+* UHD: Reduced the usage of Boost
+* UHD: Updated uhd_images_downloader: Now uses more elaborate manifest to
+ optimize downloads
+* UHD: Introduced uhdlib internal include paths
+* UHD: Add support for configuration files. USRP settings can now be set using
+ a uhd.conf file in addition to device args
+* UHD: Add narrow and narrow_cast
+* gr-usrptest: Various bugfixes
+* Updated required Vivado version to 2017.4
+* Updated all license headers to use SPDX identifiers and correctly identify
+ Ettus Research as part of National Instruments
+* This release includes all bugfixes and features from previous releases, in
+ particular, the 3.10.* release cycle
+
+
+## 003.010.003.000
+
+* X300
+** Fix max rate calculation for 1 GbE
+** Fix for DAC synchronization errors (unexpected FIFO depth)
+** Reduced CPU usage during TX
+* N230
+** Properly initialize request structure before discovery
+* B200
+** FX3 firmware performance opitimizations
+** Fixed sequence error on second TX burst
+* TwinRX
+** Added ADF5356 synth and Rev C support
+* UBX
+** Add implementation of TDD xcvr_mode and for TX PA on in TDD mode (to reduce transient on older revs)
+** Add support for UBX-TDD
+* C API
+** Fixed dboard EEPROM revision error handling
+** Make uhd_rx_streamer_last_error use SAFE_C
+** Better error handling in uhd_usrp_get_[t/r]x_stream
+* RFNoC
+** Fix ctrl_iface to pop sequence numbers only after success
+** Fix sequence number error message in ctrl_iface
+** FPGA fix for sr_read() failure to ack errors
+** FPGA fix for repeated sequence number for RX packets with 1 sample
+** FPGA fix for axi_serializer edge case
+* Docs
+** Fixed B200 power LED description
+** Update README application links
+* UHD
+** Utilize poll() instead of select() for UDP transports where possible to avoid descirptor limits
+** Fix build with Boost 1.66
+** Add EEPROM info to dboard_base class so daughterboard code can access all EEPROM info
+
+
## 003.010.002.000
* multi_usrp: Fixed get_normalized_tx_gain.
diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake
index 69dcef681..a15d03ddf 100644
--- a/host/cmake/Modules/UHDVersion.cmake
+++ b/host/cmake/Modules/UHDVersion.cmake
@@ -20,7 +20,7 @@ FIND_PACKAGE(Git QUIET)
SET(UHD_VERSION_MAJOR 3)
SET(UHD_VERSION_API 11)
SET(UHD_VERSION_ABI 0)
-SET(UHD_VERSION_PATCH git)
+SET(UHD_VERSION_PATCH 0)
SET(UHD_VERSION_DEVEL TRUE)
########################################################################