Skip to content

Commit

Permalink
Update links for branch renaming (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
preston-evans98 authored Jul 17, 2023
1 parent 11c6eb3 commit 7f98e41
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
![](./assets/banner.jpg)

<div align="center">
<a href="https://github.com/Sovereign-Labs/sovereign-sdk/blob/main/LICENSE">
<a href="https://github.com/Sovereign-Labs/sovereign-sdk/blob/stable/LICENSE">
<img alt="License: Apache-2.0" src="https://img.shields.io/github/license/Sovereign-Labs/sovereign-sdk.svg" />
</a>
<a href="https://codecov.io/gh/Sovereign-Labs/sovereign-sdk" >
<img alt="Coverage" src="https://codecov.io/gh/Sovereign-Labs/sovereign-sdk/branch/main/graph/badge.svg"/>
<img alt="Coverage" src="https://codecov.io/gh/Sovereign-Labs/sovereign-sdk/branch/stable/graph/badge.svg"/>
</a>
<a href="https://discord.gg/kbykCcPrcA" >
<img alt="Discord" src="https://img.shields.io/discord/1050059327626555462?label=discord"/>
Expand Down
12 changes: 6 additions & 6 deletions examples/demo-nft-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Here are defining basic dependencies in `Cargo.toml` that module needs to get st
```toml
[dependencies]
anyhow = { anyhow = "1.0.62" }
sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main" }
sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }
sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable" }
```

### Establishing the Root Module Structure
Expand Down Expand Up @@ -121,9 +121,9 @@ Before we start implementing the `Module` trait, there are several preparatory s
serde = { version = "1", features = ["derive"] }
serde_json = "1"

sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main" }
sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }
sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable" }
sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }

[features]
default = ["native"]
Expand Down Expand Up @@ -371,7 +371,7 @@ Temporary storage is needed for testing, so we enable the `temp` feature of `sov

```toml
[dev-dependencies]
sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", features = ["temp"] }
sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", features = ["temp"] }
```

Here is some boilerplate for NFT module integration tests:
Expand Down
2 changes: 1 addition & 1 deletion rollup-interface/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</div>

<div align="center">
<a href="https://github.com/Sovereign-Labs/sovereign-sdk/blob/main/LICENSE">
<a href="https://github.com/Sovereign-Labs/sovereign-sdk/blob/stable/LICENSE">
<img alt="License: Apache-2.0" src="https://img.shields.io/github/license/Sovereign-Labs/sovereign-sdk.svg" />
</div>

Expand Down

0 comments on commit 7f98e41

Please sign in to comment.