summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG21
m---------fpga-src0
-rw-r--r--host/CMakeLists.txt4
-rw-r--r--host/cmake/Modules/UHDVersion.cmake2
-rw-r--r--host/cmake/debian/changelog24
-rw-r--r--host/include/uhd/version.hpp.in2
6 files changed, 49 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9cc22f474..189039551 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,27 @@
Change Log for Releases
==============================
+## 003.010.000.000
+- Changed version string to quadruplets (Major.API.ABI.Patch)
+- Minimum dependencies bumped for gcc, Boost, CMake, clang and Python.
+- TwinRX: Added support. Includes LO API for multi_usrp.
+- N230: Added support
+- Added expert framework
+- X300: Completely restructured to use RFNoC
+- X300: FPGA builds include git hash, dual 10GigE receive is now supported
+ (allows 2x200 Msps receive over 2x10GigE connections), DMA FIFO (over DRAM)
+ now part of builds, added Aurora support
+- WBX: Fixed bug that prevented LO locking with 50 MHz ref clock
+- pkg-config: Added boost_system
+- Utils: uhd_usrp_probe can query sensors, query_gpsdo_sensors: minor fixes,
+ and cleanup
+- Examples: Bugfixes in tx_waveforms, benchmark_rate measures timeouts,
+- USB subsystem: Cleanups and minor bugfixes
+- Added devtest infrastructure
+- Converters: Added s8 and s16 data types
+- Added more aggressive optimization strategies for FPGA builds
+- Xilinx IP tool upgrade scripts cleaned up
+
## 003.009.004
- GPIO control: Fix address mismatch for RX and full duplex.
This fixes full-duplex mode for most devices.
diff --git a/fpga-src b/fpga-src
-Subproject e93b6b096609f7d9b8404c6f8ac3169c43459b5
+Subproject f592fc34731e984271286707361352cfca84536
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt
index 69254bcdc..ccea35006 100644
--- a/host/CMakeLists.txt
+++ b/host/CMakeLists.txt
@@ -331,8 +331,8 @@ UHD_INSTALL(FILES
#{{{IMG_SECTION
# This section is written automatically by /images/create_imgs_package.py
# Any manual changes in here will be overwritten.
-SET(UHD_IMAGES_MD5SUM "071d51a666ddc98d27c5f1c8d47c474e")
-SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.010.000.master-310-304-g47551428.zip")
+SET(UHD_IMAGES_MD5SUM "26473d4f18d2c9a207062e107bda1d11")
+SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.010.000.000-release.zip")
#}}}
########################################################################
diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake
index bb1eed132..abf75b1b2 100644
--- a/host/cmake/Modules/UHDVersion.cmake
+++ b/host/cmake/Modules/UHDVersion.cmake
@@ -30,7 +30,7 @@ FIND_PACKAGE(Git QUIET)
SET(UHD_VERSION_MAJOR 003)
SET(UHD_VERSION_API 010)
SET(UHD_VERSION_ABI 000)
-SET(UHD_VERSION_PATCH git)
+SET(UHD_VERSION_PATCH 000)
SET(UHD_VERSION_DEVEL TRUE)
########################################################################
diff --git a/host/cmake/debian/changelog b/host/cmake/debian/changelog
index f83d834a2..48732ca38 100644
--- a/host/cmake/debian/changelog
+++ b/host/cmake/debian/changelog
@@ -1,3 +1,27 @@
+uhd (3.10.0.0-0ubuntu1) trusty; urgency=low
+
+ - Changed version string to quadruplets (Major.API.ABI.Patch)
+ - Minimum dependencies bumped for gcc, Boost, CMake, clang and Python.
+ - TwinRX: Added support. Includes LO API for multi_usrp.
+ - N230: Added support
+ - Added expert framework
+ - X300: Completely restructured to use RFNoC
+ - X300: FPGA builds include git hash, dual 10GigE receive is now supported
+ (allows 2x200 Msps receive over 2x10GigE connections), DMA FIFO (over DRAM)
+ now part of builds, added Aurora support
+ - WBX: Fixed bug that prevented LO locking with 50 MHz ref clock
+ - pkg-config: Added boost_system
+ - Utils: uhd_usrp_probe can query sensors, query_gpsdo_sensors: minor fixes,
+ and cleanup
+ - Examples: Bugfixes in tx_waveforms, benchmark_rate measures timeouts,
+ - USB subsystem: Cleanups and minor bugfixes
+ - Added devtest infrastructure
+ - Converters: Added s8 and s16 data types
+ - Added more aggressive optimization strategies for FPGA builds
+ - Xilinx IP tool upgrade scripts cleaned up
+
+ -- Ettus Research <packages@ettus.com> Thu, 11 Aug 2016 04:48:49 -0800
+
uhd (3.9.4-0ubuntu1) trusty; urgency=low
- GPIO control: Fix address mismatch for RX and full duplex.
diff --git a/host/include/uhd/version.hpp.in b/host/include/uhd/version.hpp.in
index 85c0aac9f..905306c65 100644
--- a/host/include/uhd/version.hpp.in
+++ b/host/include/uhd/version.hpp.in
@@ -27,7 +27,7 @@
* The format is oldest API compatible release - ABI compat number.
* The compatibility number allows pre-release ABI to be versioned.
*/
-#define UHD_VERSION_ABI_STRING "3.10.0-0"
+#define UHD_VERSION_ABI_STRING "3.10.0"
/*!
* A macro to check UHD version at compile-time.