diff --git a/CHANGELOG.md b/CHANGELOG.md index 5692ee5..9f307ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.7.4] - 2024-11-13 + +### Bug Fixes + +- Set teloxide version in Cargo.toml to allow publishing of crate. + ## [0.7.3] - 2024-11-12 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 5fd4771..56a303d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2165,7 +2165,7 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.7.3" +version = "0.7.4" dependencies = [ "anyhow", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index b37fcea..4114deb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphcast-sdk" -version = "0.7.3" +version = "0.7.4" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "SDK to build Graphcast Radios" diff --git a/scripts/docker-cargo-publish.sh b/scripts/docker-cargo-publish.sh index e56c79c..46d1892 100755 --- a/scripts/docker-cargo-publish.sh +++ b/scripts/docker-cargo-publish.sh @@ -3,4 +3,4 @@ # NOTE: Run from project root ./scripts/docker-cargo-publish.sh docker build -t graphcast-sdk-dev -f Dockerfile.dev . -docker run --rm -e CARGO_REGISTRY_TOKEN=$CARGO_REGISTRY_TOKEN -v .:/app graphcast-sdk-dev cargo publish +docker run --rm -e CARGO_REGISTRY_TOKEN=$CARGO_REGISTRY_TOKEN -v .:/app graphcast-sdk-dev cargo publish --token $CARGO_REGISTRY_TOKEN