Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

chore: release main #41

Merged
merged 1 commit into from
Dec 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.2.8","crates/client":"0.2.2","crates/scraper":"0.2.5","crates/types":"0.1.1"}
{".":"0.2.9","crates/client":"0.2.2","crates/scraper":"0.2.6","crates/types":"0.1.1"}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

### [0.2.9](https://github.com/YoloDev/3commas-rs/compare/ghcr.io/yolodev/three-commas-scraper-v0.2.8...ghcr.io/yolodev/three-commas-scraper-v0.2.9) (2021-12-30)


### Dependencies

* update rust crate anyhow to 1.0.52 ([#35](https://github.com/YoloDev/3commas-rs/issues/35)) ([7e62834](https://github.com/YoloDev/3commas-rs/commit/7e6283480c72cf79f43a35cf1465b527d4751d89))
* update rust crate clap to 3.0.0-rc.11 ([#43](https://github.com/YoloDev/3commas-rs/issues/43)) ([082975d](https://github.com/YoloDev/3commas-rs/commit/082975d2a4ce9ac44d5e21076fa628462eb101ad))
* update rust crate clap to 3.0.0-rc.3 ([#29](https://github.com/YoloDev/3commas-rs/issues/29)) ([a7a0d56](https://github.com/YoloDev/3commas-rs/commit/a7a0d567bb9058c7da0333cc6ae0e4a217562516))
* update rust crate clap to 3.0.0-rc.4 ([#31](https://github.com/YoloDev/3commas-rs/issues/31)) ([f52eb07](https://github.com/YoloDev/3commas-rs/commit/f52eb07d8ea0ac4e3fab74d7ee6b4f0b18a14115))
* update rust crate clap to 3.0.0-rc.5 ([#32](https://github.com/YoloDev/3commas-rs/issues/32)) ([a164d2b](https://github.com/YoloDev/3commas-rs/commit/a164d2bbf77a2a3b9089472d68269fcb044722ee))
* update rust crate clap to 3.0.0-rc.7 ([#33](https://github.com/YoloDev/3commas-rs/issues/33)) ([c945c41](https://github.com/YoloDev/3commas-rs/commit/c945c419e1ffc32c92fcf3c7c109fbf3542e90c2))
* update rust crate clap to 3.0.0-rc.8 ([#36](https://github.com/YoloDev/3commas-rs/issues/36)) ([ac8c13f](https://github.com/YoloDev/3commas-rs/commit/ac8c13f9cd5512ae04be25031c5b2bff78a5f853))
* update rust crate clap to 3.0.0-rc.9 ([#39](https://github.com/YoloDev/3commas-rs/issues/39)) ([cebd8d7](https://github.com/YoloDev/3commas-rs/commit/cebd8d7b726eb19ec2731a177c100749a0a9139a))
* update rust crate futures to 0.3.19 ([#34](https://github.com/YoloDev/3commas-rs/issues/34)) ([6d3aabc](https://github.com/YoloDev/3commas-rs/commit/6d3aabc6b5056e2f0dd9afe77a0f622243f15db2))
* update rust crate rust_decimal to 1.19.0 ([#38](https://github.com/YoloDev/3commas-rs/issues/38)) ([8f3e5d1](https://github.com/YoloDev/3commas-rs/commit/8f3e5d17a1f5792cc5abbfac426566213a9ff19c))
* update rust crate tracing-subscriber to 0.3.4 ([#37](https://github.com/YoloDev/3commas-rs/issues/37)) ([9cdec28](https://github.com/YoloDev/3commas-rs/commit/9cdec28b902fa464328289be2382cbd7e775479f))
* update rust crate tracing-subscriber to 0.3.5 ([#42](https://github.com/YoloDev/3commas-rs/issues/42)) ([23ebdde](https://github.com/YoloDev/3commas-rs/commit/23ebdde542a05512eb25585b37433605f2da2093))

### [0.2.8](https://www.github.com/YoloDev/3commas-rs/compare/ghcr.io/yolodev/three-commas-scraper-v0.2.7...ghcr.io/yolodev/three-commas-scraper-v0.2.8) (2021-12-09)


Expand Down
4 changes: 4 additions & 0 deletions crates/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* three-commas-types bumped from 0.1.1 to 0.1.2

### [0.2.2](https://www.github.com/YoloDev/3commas-rs/compare/three-commas-client-v0.2.1...three-commas-client-v0.2.2) (2021-12-09)


Expand Down
4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "three-commas-client"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
description = "3commas client"
license = "MIT"
Expand All @@ -23,7 +23,7 @@ thiserror = "1"
tracing = "0.1"
tracing-futures = "0.2"

three-commas-types = { version = "0.1.1", path = "../types" }
three-commas-types = { version = "0.1.2", path = "../types" }

[dev-dependencies]
async-std = { version = "1", features = ["attributes"] }
23 changes: 22 additions & 1 deletion crates/scraper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

### [0.2.6](https://github.com/YoloDev/3commas-rs/compare/three-commas-scraper-v0.2.5...three-commas-scraper-v0.2.6) (2021-12-30)


### Dependencies

* update rust crate anyhow to 1.0.52 ([#35](https://github.com/YoloDev/3commas-rs/issues/35)) ([7e62834](https://github.com/YoloDev/3commas-rs/commit/7e6283480c72cf79f43a35cf1465b527d4751d89))
* update rust crate clap to 3.0.0-rc.11 ([#43](https://github.com/YoloDev/3commas-rs/issues/43)) ([082975d](https://github.com/YoloDev/3commas-rs/commit/082975d2a4ce9ac44d5e21076fa628462eb101ad))
* update rust crate clap to 3.0.0-rc.3 ([#29](https://github.com/YoloDev/3commas-rs/issues/29)) ([a7a0d56](https://github.com/YoloDev/3commas-rs/commit/a7a0d567bb9058c7da0333cc6ae0e4a217562516))
* update rust crate clap to 3.0.0-rc.4 ([#31](https://github.com/YoloDev/3commas-rs/issues/31)) ([f52eb07](https://github.com/YoloDev/3commas-rs/commit/f52eb07d8ea0ac4e3fab74d7ee6b4f0b18a14115))
* update rust crate clap to 3.0.0-rc.5 ([#32](https://github.com/YoloDev/3commas-rs/issues/32)) ([a164d2b](https://github.com/YoloDev/3commas-rs/commit/a164d2bbf77a2a3b9089472d68269fcb044722ee))
* update rust crate clap to 3.0.0-rc.7 ([#33](https://github.com/YoloDev/3commas-rs/issues/33)) ([c945c41](https://github.com/YoloDev/3commas-rs/commit/c945c419e1ffc32c92fcf3c7c109fbf3542e90c2))
* update rust crate clap to 3.0.0-rc.8 ([#36](https://github.com/YoloDev/3commas-rs/issues/36)) ([ac8c13f](https://github.com/YoloDev/3commas-rs/commit/ac8c13f9cd5512ae04be25031c5b2bff78a5f853))
* update rust crate clap to 3.0.0-rc.9 ([#39](https://github.com/YoloDev/3commas-rs/issues/39)) ([cebd8d7](https://github.com/YoloDev/3commas-rs/commit/cebd8d7b726eb19ec2731a177c100749a0a9139a))
* update rust crate futures to 0.3.19 ([#34](https://github.com/YoloDev/3commas-rs/issues/34)) ([6d3aabc](https://github.com/YoloDev/3commas-rs/commit/6d3aabc6b5056e2f0dd9afe77a0f622243f15db2))
* update rust crate rust_decimal to 1.19.0 ([#38](https://github.com/YoloDev/3commas-rs/issues/38)) ([8f3e5d1](https://github.com/YoloDev/3commas-rs/commit/8f3e5d17a1f5792cc5abbfac426566213a9ff19c))
* update rust crate tracing-subscriber to 0.3.4 ([#37](https://github.com/YoloDev/3commas-rs/issues/37)) ([9cdec28](https://github.com/YoloDev/3commas-rs/commit/9cdec28b902fa464328289be2382cbd7e775479f))
* update rust crate tracing-subscriber to 0.3.5 ([#42](https://github.com/YoloDev/3commas-rs/issues/42)) ([23ebdde](https://github.com/YoloDev/3commas-rs/commit/23ebdde542a05512eb25585b37433605f2da2093))
* The following workspace dependencies were updated
* dependencies
* three-commas-client bumped from 0.2.2 to 0.2.3

### [0.2.5](https://www.github.com/YoloDev/3commas-rs/compare/three-commas-scraper-v0.2.4...three-commas-scraper-v0.2.5) (2021-12-09)


Expand Down Expand Up @@ -89,4 +110,4 @@

* The following workspace dependencies were updated
* dependencies
* three-commas-client bumped from 0.0.0 to 0.1.0
* three-commas-client bumped from 0.0.0 to 0.1.0
4 changes: 2 additions & 2 deletions crates/scraper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "three-commas-scraper"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
description = "3commas scraper"
license = "MIT"
Expand Down Expand Up @@ -29,4 +29,4 @@ tracing = "0.1.29"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.5", features = ["json", "env-filter"] }

three-commas-client = { version = "0.2.2", path = "../client" }
three-commas-client = { version = "0.2.3", path = "../client" }
2 changes: 2 additions & 0 deletions crates/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog



### [0.1.1](https://www.github.com/YoloDev/3commas-rs/compare/three-commas-types-v0.1.0...three-commas-types-v0.1.1) (2021-12-05)


Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "three-commas-types"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "3commas api types"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.8
0.2.9