diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c6a7fdb..2d43546e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,6 +157,13 @@ jobs: command: check args: --examples --features full + # TODO: prolly move it to a separate step? + - name: Check with no default features + uses: actions-rs/cargo@v1 + with: + command: check + args: --no-default-features + clippy: name: Run linter runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 367631d4..4fbeeff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `rocksdb-storage` feature and associated items (See [PR #761](https://github.com/teloxide/teloxide/pull/761) for reasoning) [**BC**] +## 0.11.3 - 2022-11-28 + +### Fixed + +- Add another missing feature gate for `dispatching::repls` import ([issue #770](https://github.com/teloxide/teloxide/issues/770)) + ## 0.11.2 - 2022-11-18 ### Fixed diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index 9eb98735..acbf9301 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -9,7 +9,7 @@ Note that the list of required changes is not fully exhaustive and it may lack s If you are using rocksdb storage, you'll need to either write `Storage` impl yourself, or use a third party crate. -## 0.11 -> 0.11.2 +## 0.11 -> 0.11.3 ### teloxide diff --git a/README.md b/README.md index 1da47ab3..f5c23baf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -> [v0.11 -> v0.11.2 migration guide >>](MIGRATION_GUIDE.md#011---0112) +> [v0.11 -> v0.11.3 migration guide >>](MIGRATION_GUIDE.md#011---0113)