diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 0d87b3274..0c3a6cf19 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,7 +1,7 @@
blank_issues_enabled: false
contact_links:
- name: Discussion
- url: https://github.com/nats-io/nats.net/discussions
+ url: https://github.com/nats-io/nats.net.v1/discussions
about: Ideal for ideas, feedback, or longer form questions.
- name: Chat
url: https://slack.nats.io
diff --git a/README.md b/README.md
index 38c72e4a0..5852ee4cb 100755
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-### :mega: :warning: This repository will be renamed to `nats.net.v1` on Wednesday, July 17th, 2024
+### :mega: :warning: This repository was renamed from `nats.net` on Wednesday, July 17th, 2024
Please be prepared to update your references to the new name.
You can also read the [announcement](REPO_RENAME.md) for more information.
---
-![NATS](https://raw.githubusercontent.com/nats-io/nats.net/main/documentation/large-logo.png)
+![NATS](https://raw.githubusercontent.com/nats-io/nats.net.v1/main/documentation/large-logo.png)
# NATS - .NET V1 C# Client
@@ -27,7 +27,7 @@ NATS.Net V2
* Only supports Async I/O (async/await)
* Target current .NET LTS releases (currently .NET 6.0 & .NET 8.0)
-Checkout https://github.com/nats-io/nats.net.v2
+Checkout https://github.com/nats-io/nats.net
## Getting started
The easiest and recommended way to start using NATS in your .NET projects, is to use the [NuGet package]((https://www.nuget.org/packages/NATS.Client)). For examples on how to use the client, see below or in any of the included sample projects.
@@ -38,7 +38,7 @@ The easiest and recommended way to start using NATS in your .NET projects, is to
First, download the source code:
```text
-git clone git@github.com:nats-io/nats.net.git
+git clone git@github.com:nats-io/nats.net.v1.git
```
### Project files
diff --git a/REPO_RENAME.md b/REPO_RENAME.md
index 1b2131e56..12770daac 100644
--- a/REPO_RENAME.md
+++ b/REPO_RENAME.md
@@ -1,3 +1,5 @@
+# COMPLETED
+
# This repository will be renamed to `nats.net.v1` on Wednesday, July 17th, 2024
We wanted to let you know about an upcoming rename to our NATS .NET GitHub repositories on Wednesday, July 17. Here's what's changing:
diff --git a/documentation/_config.yml b/documentation/_config.yml
new file mode 100644
index 000000000..39b54ef5f
--- /dev/null
+++ b/documentation/_config.yml
@@ -0,0 +1 @@
+theme: minima
\ No newline at end of file
diff --git a/documentation/build_deploy_doc.bat b/documentation/build_deploy_doc.bat
index 45075da30..1b393933a 100644
--- a/documentation/build_deploy_doc.bat
+++ b/documentation/build_deploy_doc.bat
@@ -12,7 +12,7 @@ popd
: Step 2. From the parent directory clone the repo
rd nats.net-gh-pages /S /Q
-git clone https://github.com/nats-io/nats.net nats.net-gh-pages
+git clone https://github.com/nats-io/nats.net.v1 nats.net-gh-pages
: Step 3. Go into the the repo directory
cd nats.net-gh-pages
@@ -24,11 +24,14 @@ git switch gh-pages
rd search /S /Q`
del *.* /Q
-: Step 6. Move the generated docs by copying then removing the original
+: Step 6. Copy the _config.yml file
+copy ..\nats.net\documentation\_config.yml
+
+: Step 7. Move the generated docs by copying then removing the original
xcopy ..\nats.net\documentation\NATS.Client\html /S
rd ..\nats.net\documentation\NATS.Client /S /Q
-: Step 7. git add, commit and push
+: Step 8. git add, commit and push
git add -A
git commit -m "Docs for 1.1.7"
git push origin gh-pages
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index c2f5393a2..279bee147 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -6,7 +6,7 @@
CNCF
The NATS Authors
Copyright © The NATS Authors 2016-$([System.DateTime]::Now.ToString(yyyy))
- https://github.com/nats-io/nats.net
+ https://github.com/nats-io/nats.net.v1
Git
\ No newline at end of file
diff --git a/src/NATS.Client/NATS.Client.csproj b/src/NATS.Client/NATS.Client.csproj
index b3c7ec72b..08a646d19 100644
--- a/src/NATS.Client/NATS.Client.csproj
+++ b/src/NATS.Client/NATS.Client.csproj
@@ -9,7 +9,7 @@
https://nats.io
package-icon.png
false
- https://github.com/nats-io/nats.net/releases
+ https://github.com/nats-io/nats.net.v1/releases
Apache-2.0
CNCF NATS Messaging Cloud Publish Subscribe PubSub
pdbonly
diff --git a/src/NATS.Client/NATS.cs b/src/NATS.Client/NATS.cs
index 31963f125..842d97dad 100644
--- a/src/NATS.Client/NATS.cs
+++ b/src/NATS.Client/NATS.cs
@@ -36,7 +36,7 @@
* information, refer to the following:
*
* - [General Documentation for nats.io](https://nats-io.github.io/docs/)
- * - [NATS .NET C# Client found on GitHub](https://github.com/nats-io/nats.net)
+ * - [NATS .NET C# Client found on GitHub](https://github.com/nats-io/nats.net.v1)
* - [The NATS server found on GitHub](https://github.com/nats-io/nats-server)
*/
diff --git a/src/Tests/IntegrationTests/TestBasic.cs b/src/Tests/IntegrationTests/TestBasic.cs
index dee7ba717..c69657472 100644
--- a/src/Tests/IntegrationTests/TestBasic.cs
+++ b/src/Tests/IntegrationTests/TestBasic.cs
@@ -1981,7 +1981,7 @@ public void TestServersOption()
public void TestJetStreamSubjectHandling()
{
// Start a NATS server with experimental -js feature and create a stream and consumer
- // as described in issue https://github.com/nats-io/nats.net/issues/364
+ // as described in issue https://github.com/nats-io/nats.net.v1/issues/364
// publish a message into JS
using (var c = new ConnectionFactory().CreateConnection())