Skip to content

Commit

Permalink
Bump sdk version, and adjust accordingly (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots authored Jul 24, 2020
1 parent 818ce6b commit 019235c
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 29 deletions.
14 changes: 7 additions & 7 deletions memo/Cargo.lock

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

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

[package]
name = "spl-memo"
version = "1.0.3"
version = "1.0.4"
description = "Solana Program Library Memo"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"

[features]
program = []
default = ["program"]
skip-no-mangle = ["solana-sdk/skip-no-mangle"]

[dependencies]
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.13", default-features = false, features=["program"] }

[lib]
name = "spl_memo"
Expand Down
10 changes: 5 additions & 5 deletions token-swap/Cargo.lock

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

5 changes: 2 additions & 3 deletions token-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ license = "Apache-2.0"
edition = "2018"

[features]
program = []
default = ["program"]
skip-no-mangle = ["solana-sdk/skip-no-mangle"]

[dependencies]
num-derive = "0.2"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.13", default-features = false, features=["program"] }
spl-token = { path = "../token" }
thiserror = "1.0"

Expand Down
10 changes: 5 additions & 5 deletions token/Cargo.lock

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

7 changes: 3 additions & 4 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.1"
version = "1.0.2"
description = "Solana Program Library Token"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -12,14 +12,13 @@ edition = "2018"
exclude = ["js/**"]

[features]
program = []
default = ["program"]
skip-no-mangle = ["solana-sdk/skip-no-mangle"]

[dependencies]
num-derive = "0.2"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.13", default-features = false, features=["program"] }
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 1
#define TOKEN_PATCH_VERSION 2

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

0 comments on commit 019235c

Please sign in to comment.