Skip to content

Commit 115001d

Browse files
authored
Post Re-name Updates
1 parent eaf3473 commit 115001d

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

Diff for: .github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Discussion
4-
url: https://github.com/nats-io/nats.net/discussions
4+
url: https://github.com/nats-io/nats.net.v1/discussions
55
about: Ideal for ideas, feedback, or longer form questions.
66
- name: Chat
77
url: https://slack.nats.io

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
### :mega: :warning: This repository will be renamed to `nats.net.v1` on Wednesday, July 17th, 2024
1+
### :mega: :warning: This repository was renamed from `nats.net` on Wednesday, July 17th, 2024
22

33
Please be prepared to update your references to the new name.
44
You can also read the [announcement](REPO_RENAME.md) for more information.
55

66
---
77

8-
![NATS](https://raw.githubusercontent.com/nats-io/nats.net/main/documentation/large-logo.png)
8+
![NATS](https://raw.githubusercontent.com/nats-io/nats.net.v1/main/documentation/large-logo.png)
99

1010
# NATS - .NET V1 C# Client
1111

@@ -27,7 +27,7 @@ NATS.Net V2
2727
* Only supports Async I/O (async/await)
2828
* Target current .NET LTS releases (currently .NET 6.0 & .NET 8.0)
2929

30-
Checkout https://github.com/nats-io/nats.net.v2
30+
Checkout https://github.com/nats-io/nats.net
3131

3232
## Getting started
3333
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
3838
First, download the source code:
3939

4040
```text
41-
git clone [email protected]:nats-io/nats.net.git
41+
git clone [email protected]:nats-io/nats.net.v1.git
4242
```
4343

4444
### Project files

Diff for: REPO_RENAME.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# COMPLETED
2+
13
# This repository will be renamed to `nats.net.v1` on Wednesday, July 17th, 2024
24

35
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 for: documentation/_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: minima

Diff for: documentation/build_deploy_doc.bat

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ popd
1212

1313
: Step 2. From the parent directory clone the repo
1414
rd nats.net-gh-pages /S /Q
15-
git clone https://github.com/nats-io/nats.net nats.net-gh-pages
15+
git clone https://github.com/nats-io/nats.net.v1 nats.net-gh-pages
1616

1717
: Step 3. Go into the the repo directory
1818
cd nats.net-gh-pages
@@ -24,11 +24,14 @@ git switch gh-pages
2424
rd search /S /Q`
2525
del *.* /Q
2626

27-
: Step 6. Move the generated docs by copying then removing the original
27+
: Step 6. Copy the _config.yml file
28+
copy ..\nats.net\documentation\_config.yml
29+
30+
: Step 7. Move the generated docs by copying then removing the original
2831
xcopy ..\nats.net\documentation\NATS.Client\html /S
2932
rd ..\nats.net\documentation\NATS.Client /S /Q
3033

31-
: Step 7. git add, commit and push
34+
: Step 8. git add, commit and push
3235
git add -A
3336
git commit -m "Docs for 1.1.7"
3437
git push origin gh-pages

Diff for: src/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Company>CNCF</Company>
77
<Authors>The NATS Authors</Authors>
88
<Copyright>Copyright © The NATS Authors 2016-$([System.DateTime]::Now.ToString(yyyy))</Copyright>
9-
<RepositoryUrl>https://github.com/nats-io/nats.net</RepositoryUrl>
9+
<RepositoryUrl>https://github.com/nats-io/nats.net.v1</RepositoryUrl>
1010
<RepositoryType>Git</RepositoryType>
1111
</PropertyGroup>
1212
</Project>

Diff for: src/NATS.Client/NATS.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageProjectUrl>https://nats.io</PackageProjectUrl>
1010
<PackageIcon>package-icon.png</PackageIcon>
1111
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
12-
<PackageReleaseNotes>https://github.com/nats-io/nats.net/releases</PackageReleaseNotes>
12+
<PackageReleaseNotes>https://github.com/nats-io/nats.net.v1/releases</PackageReleaseNotes>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageTags>CNCF NATS Messaging Cloud Publish Subscribe PubSub</PackageTags>
1515
<DebugType>pdbonly</DebugType>

Diff for: src/NATS.Client/NATS.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* information, refer to the following:
3737
*
3838
* - [General Documentation for nats.io](https://nats-io.github.io/docs/)
39-
* - [NATS .NET C# Client found on GitHub](https://github.com/nats-io/nats.net)
39+
* - [NATS .NET C# Client found on GitHub](https://github.com/nats-io/nats.net.v1)
4040
* - [The NATS server found on GitHub](https://github.com/nats-io/nats-server)
4141
*/
4242

Diff for: src/Tests/IntegrationTests/TestBasic.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1981,7 +1981,7 @@ public void TestServersOption()
19811981
public void TestJetStreamSubjectHandling()
19821982
{
19831983
// Start a NATS server with experimental -js feature and create a stream and consumer
1984-
// as described in issue https://github.com/nats-io/nats.net/issues/364
1984+
// as described in issue https://github.com/nats-io/nats.net.v1/issues/364
19851985

19861986
// publish a message into JS
19871987
using (var c = new ConnectionFactory().CreateConnection())

0 commit comments

Comments
 (0)