Skip to content

Commit

Permalink
Merge pull request #4 from desmos-labs/v0.1.0-fix
Browse files Browse the repository at this point in the history
V0.1.0 fix
  • Loading branch information
leobragaz authored Mar 18, 2021
2 parents 1d4e1bc + ff04ab0 commit d23ac55
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 28 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ A collection of smart contracts built in [CosmWasm](https://www.cosmwasm.com/) f

![GitHub](https://img.shields.io/github/license/desmos-labs/desmos-contracts.svg) [![codecov](https://codecov.io/gh/desmos-labs/desmos-contracts/branch/master/graph/badge.svg?token=4M3W11FP2F)](https://codecov.io/gh/desmos-labs/desmos-contracts)

| Packages | Tests |
| ------------- | ------ |
| desmos | ![Package-desmos](https://github.com/desmos-labs/desmos-contracts/workflows/Package-desmos/badge.svg)|
| Packages | Tests | Crates.io |
| ------------- | ------ | ------ |
| desmos | ![Package-desmos](https://github.com/desmos-labs/desmos-contracts/workflows/Package-desmos/badge.svg)| [![desmos on crates.io](https://img.shields.io/crates/v/desmos.svg)](https://crates.io/crates/desmos)


| Contracts | Tests |
| ------------- | ------
| desmos | ![Contract-Filter-posts](https://github.com/desmos-labs/desmos-contracts/workflows/Contract-Filter-posts/badge.svg) |
| Contracts | Tests | Crates.io |
| ------------- | ------ | ------ |
| filter-posts | ![Contract-Filter-posts](https://github.com/desmos-labs/desmos-contracts/workflows/Contract-Filter-posts/badge.svg) | [![cw-desmos-filter-posts on crates.io](https://img.shields.io/crates/v/cw-desmos-filter-posts.svg)](https://crates.io/crates/cw-desmos-filter-posts)
7 changes: 4 additions & 3 deletions contracts/filter-posts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "filter-posts"
version = "0.1.0"
name = "cw-desmos-filter-posts"
version = "0.1.1"
authors = ["bragaz <[email protected]>"]
edition = "2018"
description = "A cosmwasm contract that filters desmos' network posts based on the number of reports a post has"
license = "Apache 2.0"
license = "Apache-2.0"
repository = "https://github.com/desmos-labs/desmos-contracts"
keywords = ["desmos-network", "social-network", "blockchain", "smart-contracts"]

exclude = [
# Those files are rust-optimizer artifacts.
Expand Down
2 changes: 1 addition & 1 deletion contracts/filter-posts/examples/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{env::current_dir, fs::create_dir_all};

use cosmwasm_schema::{export_schema, remove_schemas, schema_for};

use filter_posts::{
use cw_desmos_filter_posts::{
msg::{HandleMsg, InitMsg, QueryMsg},
state::State,
};
Expand Down
3 changes: 2 additions & 1 deletion contracts/filter-posts/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ use desmos::{
query_types::{DesmosQueryWrapper, PostsResponse},
types::{PollData, Post},
};
use filter_posts::{

use cw_desmos_filter_posts::{
mock::custom_query_execute,
msg::{HandleMsg, InitMsg, QueryMsg},
state::REPORTS_LIMIT_KEY,
Expand Down
6 changes: 4 additions & 2 deletions packages/desmos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[package]
name = "desmos"
version = "0.1.0"
version = "0.1.1"
authors = ["bragaz <[email protected]>"]
edition = "2018"
description = "Desmos network types and helpers"
license = "Apache 2.0"
license = "Apache-2.0"
repository = "https://github.com/desmos-labs/desmos-contracts"
homepage = "https://www.desmos.network"
keywords = ["social-network", "blockchain", "smart-contracts"]

[dependencies]
cosmwasm-std = { version = "0.13.0" }
Expand Down

0 comments on commit d23ac55

Please sign in to comment.