Skip to content

Commit 00698e3

Browse files
committed
Streamline readmes and licenses
1 parent 2771e83 commit 00698e3

File tree

7 files changed

+43
-213
lines changed

7 files changed

+43
-213
lines changed

LICENSE

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
Confio/CosmWasm
2-
License: Apache2.0
31

42
Apache License
53
Version 2.0, January 2004
@@ -181,15 +179,15 @@ License: Apache2.0
181179
APPENDIX: How to apply the Apache License to your work.
182180

183181
To apply the Apache License to your work, attach the following
184-
boilerplate notice, with the fields enclosed by brackets "{}"
182+
boilerplate notice, with the fields enclosed by brackets "[]"
185183
replaced with your own identifying information. (Don't include
186184
the brackets!) The text should be enclosed in the appropriate
187185
comment syntax for the file format. We also recommend that a
188186
file or class name and description of purpose be included on the
189187
same "printed page" as the copyright notice for easier
190188
identification within third-party archives.
191189

192-
Copyright 2019 Confio UO and Jehan Tremback
190+
Copyright [yyyy] [name of copyright owner]
193191

194192
Licensed under the Apache License, Version 2.0 (the "License");
195193
you may not use this file except in compliance with the License.

NOTICE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Copyright 2019 Jehan Tremback
2+
Copyright 2019-2020 Confio UO
3+
Copyright 2019-2020 Simon Warta
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![CircleCI](https://circleci.com/gh/CosmWasm/cosmwasm/tree/master.svg?style=shield)](https://circleci.com/gh/CosmWasm/cosmwasm/tree/master)
44
[![Docs](https://docs.rs/cosmwasm/badge.svg)](https://docs.rs/cosmwasm)
5-
[![crates.io](https://img.shields.io/crates/v/cosmwasm.svg)](https://crates.io/crates/cosmwasm)
6-
5+
[![cosmwasm on crates.io](https://img.shields.io/crates/v/cosmwasm.svg)](https://crates.io/crates/cosmwasm)
6+
[![cosmwasm-vm on crates.io](https://img.shields.io/crates/v/cosmwasm-vm.svg)](https://crates.io/crates/cosmwasm-vm)
77

88
**WebAssembly Smart Contracts for the Cosmos SDK**
99

packages/std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "cosmwasm"
33
version = "0.7.1"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2018"
6-
description = "Wasm smart contracts for Cosmos"
7-
repository = "https://github.com/CosmWasm/cosmwasm"
6+
description = "Standard library for Wasm based smart contracts on Cosmos blockchains"
7+
repository = "https://github.com/CosmWasm/cosmwasm/tree/master/packages/std"
88
license = "Apache-2.0"
99
readme = "README.md"
1010

packages/std/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# cosmwasm
2+
3+
[![cosmwasm on crates.io](https://img.shields.io/crates/v/cosmwasm.svg)](https://crates.io/crates/cosmwasm)
4+
5+
The standard library for building CosmWasm smart contracts. Code in this package is compiled into the smart contract.
6+
7+
## License
8+
9+
This package is part of the cosmwasm repository, licensed under the Apache
10+
License 2.0 (see
11+
[NOTICE](https://github.com/CosmWasm/cosmwasm/blob/master/NOTICE) and
12+
[LICENSE](https://github.com/CosmWasm/cosmwasm/blob/master/LICENSE)).

packages/vm/LICENSE

-204
This file was deleted.

packages/vm/README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Cosmwasm VM
1+
# CosmWasm VM
2+
3+
[![cosmwasm-vm on crates.io](https://img.shields.io/crates/v/cosmwasm-vm.svg)](https://crates.io/crates/cosmwasm-vm)
24

35
This is an abstraction layer around the wasmer VM to expose just what
46
we need to run cosmwasm contracts in a high-level manner.
@@ -38,3 +40,10 @@ To test with Rust stable, you need to switch to cranelift:
3840
cd packages/vm
3941
cargo test --no-default-features --features default-cranelift
4042
```
43+
44+
## License
45+
46+
This package is part of the cosmwasm repository, licensed under the Apache
47+
License 2.0 (see
48+
[NOTICE](https://github.com/CosmWasm/cosmwasm/blob/master/NOTICE) and
49+
[LICENSE](https://github.com/CosmWasm/cosmwasm/blob/master/LICENSE)).

0 commit comments

Comments
 (0)