From 6515c001e3aa5a1cb29b9174f6b29941ccfbe2c8 Mon Sep 17 00:00:00 2001 From: Per Tillisch Date: Tue, 1 Apr 2025 19:52:58 -0700 Subject: [PATCH] Use standardized `maintainer` metadata property value The `maintainer` property of the library.properties metadata file defines the entity responsible for maintenance of the library. In the libraries that are under Arduino's maintainership, it is standard practice to set the `maintainer` property to the general purpose value "Arduino ". Previously, instead of that standard value, this library's `maintainer` property defined a specific developer as the maintainer. This is prone to "bit rot", as the scope of each individual's work may change over time. It is unlikely that an individual developer team member will remember to update the metadata values at such time as they are no longer able to dedicate themselves to maintaining the library. So the metadata is changed to use the standard value. --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index abdd80d..12ce701 100644 --- a/library.properties +++ b/library.properties @@ -1,7 +1,7 @@ name=NTPClient version=3.2.1 author=Fabrice Weinberg -maintainer=Fabrice Weinberg +maintainer=Arduino sentence=An NTPClient to connect to a time server paragraph=Get time from a NTP server and keep it in sync. category=Timing