From 43f857280422bf6ea0b5efc52f50bd7f938c6803 Mon Sep 17 00:00:00 2001
From: Ed Ravin <eravin@ns1.com>
Date: Tue, 17 Jan 2023 15:03:05 -0500
Subject: [PATCH] release 2.0.0-pre1

---
 CHANGELOG.md  | 4 ++--
 ns1/config.go | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e754375b..2cac8075 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## 2.0.0-pre1 (release pending)
+## 2.0.0-pre1 (January 18, 2023)
 ENHANCEMENTS
 
 * Upgraded to Terraform SDK 2.24.1. Users of Pulsar will need to make minor changes in their resource files, see below.
@@ -22,7 +22,7 @@ resource "ns1_application" "it" {
 }
 ```
 
-instead of:
+instead of the previous syntax:
 ```
  default_config = {
 ```
diff --git a/ns1/config.go b/ns1/config.go
index 03388ab2..a9d58e30 100644
--- a/ns1/config.go
+++ b/ns1/config.go
@@ -19,7 +19,7 @@ import (
 )
 
 var (
-	clientVersion     = "2.0.0-pre1" // placeholder version until we release
+	clientVersion     = "2.0.0-pre1"
 	providerUserAgent = "tf-ns1" + "/" + clientVersion
 	defaultRetryMax   = 3
 )