Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Relax solana-sdk version requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Aug 4, 2020
1 parent f03c150 commit 4126f4c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion memo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions memo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "spl-memo"
version = "1.0.4"
version = "1.0.5"
description = "Solana Program Library Memo"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -17,7 +17,7 @@ program = ["solana-sdk/program"]
default = ["solana-sdk/default"]

[dependencies]
solana-sdk = { version = "=1.2.13", default-features = false, optional = true }
solana-sdk = { version = ">=1.2.13", default-features = false, optional = true }

[lib]
name = "spl_memo"
Expand Down
2 changes: 1 addition & 1 deletion token-swap/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion token-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ default = ["solana-sdk/default", "spl-token/default"]
num-derive = "0.3"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.13", default-features = false, optional = true }
solana-sdk = { version = ">=1.2.13", default-features = false, optional = true }
spl-token = { path = "../token", default-features = false, optional = true }
thiserror = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion token/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "spl-token"
version = "1.0.3"
version = "1.0.4"
description = "Solana Program Library Token"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -21,7 +21,7 @@ default = ["solana-sdk/default"]
num-derive = "0.3"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.13", default-features = false, optional = true }
solana-sdk = { version = ">=1.2.13", default-features = false, optional = true }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token/inc/token.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#define TOKEN_MAJOR_VERSION 1
#define TOKEN_MINOR_VERSION 0
#define TOKEN_PATCH_VERSION 3
#define TOKEN_PATCH_VERSION 4

/**
* Maximum number of multisignature signers (max N)
Expand Down

0 comments on commit 4126f4c

Please sign in to comment.