From f6cb16883b8019b083041feb3fe70cfcc959fa31 Mon Sep 17 00:00:00 2001 From: sotnikov-s Date: Wed, 27 Mar 2024 13:51:53 +0300 Subject: [PATCH] bump lockdrop and vesting-lp contracts versions --- Cargo.lock | 4 ++-- contracts/lockdrop/Cargo.toml | 2 +- contracts/vesting-lp/Cargo.toml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46208ad0..322d89cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1054,7 +1054,7 @@ dependencies = [ [[package]] name = "neutron-lockdrop" -version = "1.2.1" +version = "1.3.0" dependencies = [ "astroport 3.11.0", "astroport-periphery", @@ -1583,7 +1583,7 @@ dependencies = [ [[package]] name = "vesting-lp" -version = "1.1.0" +version = "1.2.0" dependencies = [ "astroport 2.0.0", "astroport-token", diff --git a/contracts/lockdrop/Cargo.toml b/contracts/lockdrop/Cargo.toml index e98eceb1..ff26a052 100644 --- a/contracts/lockdrop/Cargo.toml +++ b/contracts/lockdrop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neutron-lockdrop" -version = "1.2.1" +version = "1.3.0" authors = ["_astromartian"] edition = "2021" diff --git a/contracts/vesting-lp/Cargo.toml b/contracts/vesting-lp/Cargo.toml index 0dadfa86..1ff8cfd2 100644 --- a/contracts/vesting-lp/Cargo.toml +++ b/contracts/vesting-lp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vesting-lp" -version = "1.1.0" +version = "1.2.0" authors = ["Neutron"] edition = "2021" description = "Vesting contract with a voting capabilities. Provides queries to get the amount of tokens are being held by user at certain height." @@ -14,16 +14,16 @@ library = [] [dependencies] cw2 = { version = "0.15" } -vesting-base = {path = "../../packages/vesting-base"} -vesting-lp-pcl = {path = "../vesting-lp-pcl"} +vesting-base = { path = "../../packages/vesting-base" } +vesting-lp-pcl = { path = "../vesting-lp-pcl" } astroport = { path = "../../packages/astroport" } -cosmwasm-schema = { version = "1.1", default-features = false } +cosmwasm-schema = { version = "1.1", default-features = false } cosmwasm-std = { version = "1.1" } cw-storage-plus = "0.15" cw20 = { version = "0.15" } [dev-dependencies] cw-multi-test = "0.15" -astroport-token = {git = "https://github.com/astroport-fi/astroport-core.git", rev = "65ce7d1879cc5d95b09fa14202f0423bba52ae0e" } +astroport-token = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "65ce7d1879cc5d95b09fa14202f0423bba52ae0e" } cw20 = { version = "0.15" } cw-utils = "0.15"