Skip to content

Commit 2a6d4b7

Browse files
authored
Merge pull request #13 from interledger/release-0.1.1
feat: prepare v0.1.1 release
2 parents fb50a88 + e4def55 commit 2a6d4b7

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<!--
2-
If updating the specs in /openapi, you can test the changes by opening a PR and checking the Netlify deploy preview
3-
-->
4-
51
## Changes proposed in this pull request
62

73
<!--

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: cargo test --doc
4646

4747
- name: Build with snippets feature
48-
run: cargo build --features snippets
48+
run: cargo build --release --features snippets
4949

5050
docs:
5151
name: Build documentation

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[package]
22
name = "open-payments"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["Interledger <tech@interledger.org>"]
6-
description = "Open Payments Rust client library with types, HTTP client, and utilities"
6+
description = "Open Payments Rust SDK library with types, HTTP client and signature utilities"
77
license = "Apache-2.0"
88
repository = "https://github.com/interledger/open-payments-rust"
99
readme = "README.md"
10+
keywords = ["open-payments", "interledger", "payments", "http-signatures", "gnap"]
11+
categories = ["api-bindings", "web-programming", "asynchronous"]
12+
documentation = "https://docs.rs/open-payments"
13+
homepage = "https://github.com/interledger/open-payments-rust"
1014

1115
[features]
1216
default = []

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,19 @@ cargo doc --no-deps --open
110110
# Generate documentation with snippets feature:
111111
cargo doc --features snippets --no-deps
112112
```
113+
114+
## Adding crate as dependency
115+
116+
Add this to your `Cargo.toml`:
117+
118+
```toml
119+
[dependencies]
120+
open-payments = "0.1.1"
121+
```
122+
123+
For examples and snippets:
124+
```toml
125+
[dependencies]
126+
open-payments = { version = "0.1.1", features = ["snippets"] }
127+
```
128+
```

0 commit comments

Comments
 (0)