diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07dc57432057291cd59cdbceaa30e89e82701d69..4988708e2784ae405f385ba11aaa276b2dad8399 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,21 @@
 # Changelog
 All notable changes to Pulselib will be documented in this file.
 
-## \[1.@@@@@] - 2023-07-@@@
+## \[1.7.@@@@@] - 2023-08-@@@
 
 - Added conditional segments for Qblox (requires qblox-instruments v0.9+)
-- Removed add_HVI_marker and add_HVI_variable from segment channels. Big performance improvement.
+- Performance improvement of 20% up to 10 times in compilation, especially for randomized benchmarking and GST.
+- Added looping on segment.sample_rate
+- Added aggregate_func to aggregate n samples of 1 measurement to a single value with a user defined function.
+- Performance improvement of 20% up to 10 times in compilation, especially for randomized benchmarking and GST.
+- Added looping on segment.sample_rate
+- Added aggregate_func to aggregate n samples of 1 measurement to a single value with a user defined function.
+- Improved accuracy of hres ramps for Keysight (error is now ~10 ps).
+
+## \[1.6.32] - 2023-08-10
+
+- Removed add_HVI_marker and add_HVI_variable from segment channels.
+  Huge performance improvement for GST and RB. O(N^2) -> O(N)
 
 ## \[1.6.31] - 2023-07-28
 
diff --git a/pulse_lib/__init__.py b/pulse_lib/__init__.py
index 43c8b2278dc810a241e4a3c5b1cf59e1fcbd5fff..40d41ad09a531dbbc0d2d74c56a1cff5b1280e3b 100644
--- a/pulse_lib/__init__.py
+++ b/pulse_lib/__init__.py
@@ -1,2 +1,2 @@
 
-__version__ = "1.6.31"
+__version__ = "1.6.32"
diff --git a/pulse_lib/tests/configurations/test_configuration.py b/pulse_lib/tests/configurations/test_configuration.py
index 5b4bbd838eb2cfc3b35e9718993aa2b57dc00b9d..4c7fd5b4e93e5ebe6429051cebcd28365202c40b 100644
--- a/pulse_lib/tests/configurations/test_configuration.py
+++ b/pulse_lib/tests/configurations/test_configuration.py
@@ -75,6 +75,7 @@ class Context:
                     print(f'  Add {module.name}: {module.module_type}{rf}')
                     station.add_component(module, module.name)
 #                    try:
+#                        module.config('trace', True)
 #                        module.config('render_repetitions', False)
 #                    except:
 #                        pass
@@ -281,6 +282,7 @@ class Context:
         if not _ct_configured:
             ct.configure(os.path.join(self._dir, 'ct_config.yaml'))
             _ct_configured = True
+        ct.set_sample_info(sample=self.configuration_name)
 
     def run(self, name, sequence, *params, silent=False, sweeps=[]):
         runner = self._configuration['runner']
@@ -291,7 +293,6 @@ class Context:
 
         elif runner == 'core_tools':
             self.init_coretools()
-            ct.set_sample_info(sample=self.configuration_name)
             scan_sweeps = []
             for sw in sweeps:
                 scan_sweeps.append(sweep(*sw))
diff --git a/setup.py b/setup.py
index 6f7765ee95bedbcf323786dff0c9e5a774ef4948..3a5af08c6d453113ccc874357ead678b0dbfcd8e 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ print('packages: %s' % packages)
 
 
 setup(name="pulse_lib",
-	version="1.6.31",
+	version="1.6.32",
 	packages = find_packages(),
     python_requires=">=3.7",
     install_requires=[
diff --git a/tbump.toml b/tbump.toml
index c340efc50357a0058674c1fd1df3c5670f2e88ee..ffbd3b87adfb0d2cfb9623fb6c0f7c11175c1db3 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -2,7 +2,7 @@
 # github_url = "https://github.com/<user or organization>/<project>/"
 
 [version]
-current = "1.6.31"
+current = "1.6.32"
 
 # Example of a semver regexp.
 # Make sure this matches current_version before