From b09d2f3956349f44ec61369b70be3545c5107352 Mon Sep 17 00:00:00 2001 From: John Weldon Date: Sat, 14 Aug 2021 20:01:31 -0700 Subject: [PATCH] Add Go 1.16, drop 1.13 (#335) * Add Go 1.16, drop 1.13 * Add 1.13 back in --- .github/workflows/pr.yml | 1 + control.go | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 86af1281..075bb8d3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,6 +11,7 @@ jobs: strategy: matrix: go: [ + '1.16', '1.15', '1.14', '1.13', diff --git a/control.go b/control.go index e63c95b7..64fb002a 100644 --- a/control.go +++ b/control.go @@ -31,11 +31,11 @@ const ( // ControlTypeMap maps controls to text descriptions var ControlTypeMap = map[string]string{ - ControlTypePaging: "Paging", - ControlTypeBeheraPasswordPolicy: "Password Policy - Behera Draft", - ControlTypeManageDsaIT: "Manage DSA IT", - ControlTypeMicrosoftNotification: "Change Notification - Microsoft", - ControlTypeMicrosoftShowDeleted: "Show Deleted Objects - Microsoft", + ControlTypePaging: "Paging", + ControlTypeBeheraPasswordPolicy: "Password Policy - Behera Draft", + ControlTypeManageDsaIT: "Manage DSA IT", + ControlTypeMicrosoftNotification: "Change Notification - Microsoft", + ControlTypeMicrosoftShowDeleted: "Show Deleted Objects - Microsoft", ControlTypeMicrosoftServerLinkTTL: "Return TTL-DNs for link values with associated expiry times - Microsoft", }