From dd3144b5852f1e0168a43086bfe5a0479ab46271 Mon Sep 17 00:00:00 2001
From: Reinder Kraaij <kraaij@astron.nl>
Date: Wed, 9 Apr 2025 19:46:50 +0000
Subject: [PATCH] Add missing version label

---
 .gitlab-ci.yml | 6 ++++--
 README.md      | 1 +
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 73edba9d4..23dc1bfb8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -102,7 +102,8 @@ secret_detection:
 # Run all unit tests for Python versions except the base image
 run_unit_tests:
   extends: .run_unit_test_version_base
-  needs: []
+  needs:
+   - trigger_prepare
   stage: test
   allow_failure: true
   image: python:3.${PY_VERSION}
@@ -114,7 +115,8 @@ run_unit_tests:
 
 run_unit_tests_coverage:
   extends: .run_unit_test_version_base
-  needs: []
+  needs: 
+   - trigger_prepare
   stage: test
   script:
     - tox -e coverage
diff --git a/README.md b/README.md
index e34dae258..ff4ab2ddc 100644
--- a/README.md
+++ b/README.md
@@ -150,6 +150,7 @@ Next change the version in the following places:
    through [https://git.astron.nl/lofar2.0/tango/-/tags](Deploy Tags)
 
 # Release Notes
+* 0.48.0 Add Antennafield to gRPC server
 * 0.47.2 Fix ZMQ hostname to subscribe to in gRPC server
 * 0.47.1 Move GrafanaAPIV3 RPC interface to Opah repo
 * 0.47.0 Migrate from lofar-station-client to lofar-lotus package. Update various package dependencies.
-- 
GitLab