Skip to content

Commit

Permalink
Post Re-name Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jul 17, 2024
1 parent eaf3473 commit 115001d
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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.
Expand All @@ -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 [email protected]:nats-io/nats.net.git
git clone [email protected]:nats-io/nats.net.v1.git
```

### Project files
Expand Down
2 changes: 2 additions & 0 deletions REPO_RENAME.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
1 change: 1 addition & 0 deletions documentation/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: minima
9 changes: 6 additions & 3 deletions documentation/build_deploy_doc.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Company>CNCF</Company>
<Authors>The NATS Authors</Authors>
<Copyright>Copyright © The NATS Authors 2016-$([System.DateTime]::Now.ToString(yyyy))</Copyright>
<RepositoryUrl>https://github.com/nats-io/nats.net</RepositoryUrl>
<RepositoryUrl>https://github.com/nats-io/nats.net.v1</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/NATS.Client/NATS.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageProjectUrl>https://nats.io</PackageProjectUrl>
<PackageIcon>package-icon.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>https://github.com/nats-io/nats.net/releases</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nats-io/nats.net.v1/releases</PackageReleaseNotes>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>CNCF NATS Messaging Cloud Publish Subscribe PubSub</PackageTags>
<DebugType>pdbonly</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion src/NATS.Client/NATS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Tests/IntegrationTests/TestBasic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 115001d

Please sign in to comment.