diff --git a/CHANGELOG.md b/CHANGELOG.md index f21429d..a187a61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [1.3.0-alpha.5] - 2025-01-04 + +### Bug Fixes + +- Solve some minor issues and update dependencies + ## [1.3.0-alpha.4] - 2024-12-25 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index c83a1f7..0502490 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,9 +131,9 @@ checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0" dependencies = [ "proc-macro2", "quote", @@ -1576,7 +1576,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "lilnouns-bots" -version = "1.3.0-alpha.4" +version = "1.3.0-alpha.5" dependencies = [ "anyhow", "async-trait", @@ -2369,9 +2369,9 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] @@ -2400,9 +2400,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 36fc77c..a487968 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lilnouns-bots" -version = "1.3.0-alpha.4" +version = "1.3.0-alpha.5" authors = ["Milad Nekofar "] edition = "2021" description = "Our bots are designed to keep the Lil Nouns DAO community informed and engaged." @@ -23,7 +23,7 @@ default = ["console_error_panic_hook"] [dependencies] anyhow = "1.0.95" -async-trait = "0.1.83" +async-trait = "0.1.84" cfg-if = "1.0.0" chrono = "0.4.39" console_error_panic_hook = { version = "0.1.7", optional = true } @@ -33,7 +33,7 @@ graphql_client = { version = "0.14.0", features = ["reqwest"] } log = "0.4.22" regex = "1.11.1" reqwest = "0.11.27" -serde = { version = "1.0.216", features = ["derive"] } +serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.134" time = "0.3.37" worker = "0.5.0"